Share via


StringFromCLSID

This function converts a class identifier into a string of printable characters. Different class identifiers always convert to different strings.

WINOLEAPI StringFromCLSID(
  REFCLSID rclsid, 
  LPOLESTR* ppsz
); 

Parameters

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

Return Values

S_OK indicates that the class identifier was successfully converted and returned. The standard return value E_OUTOFMEMORY is also supported.

Remarks

The StringFromCLSID function calls the StringFromGUID2 function to convert a globally unique identifier (GUID) into a string of printable characters.

The caller is responsible for freeing the memory allocated for the string by calling CoTaskMemFree.

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

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

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Objbase.h.
Link Library: Ole32.lib.

See Also

CoTaskMemFree | StringFromGUID2

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.