StringFromIID (Compact 2013)

3/26/2014

This function converts an interface identifier into a string of printable characters.

Syntax

WINOLEAPI StringFromIID(
  REFIID rclsid, 
  LPOLESTR* lplpsz
); 

Parameters

  • rclsid
    [in] Interface identifier to be converted.
  • lplpsz
    [out] Address of LPOLESTR pointer variable that receives a pointer to the resulting null-terminated string.

Return Value

S_OK indicates that the character string was successfully returned. The standard return value E_OUTOFMEMORY is also supported.

Remarks

The string returned by the function is freed in the standard way, using the task allocator.

Passing into this function any invalid and, under some circumstances, NULL pointers result in unexpected termination of the application.

To determine whether the platform supports this function, see Determining Supported COM APIs.

Requirements

Header

objbase.h

Library

ole32.lib

See Also

Reference

COM Functions