You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
501 B
31 lines
501 B
#define MAX_GUID_SZ_CHARS 40
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// guid -> string conversion
|
|
DWORD MyGuidToStringA(
|
|
const GUID* pguid,
|
|
CHAR rgsz[]);
|
|
|
|
// guid -> string conversion
|
|
DWORD MyGuidToStringW(
|
|
const GUID* pguid,
|
|
WCHAR rgsz[]);
|
|
|
|
|
|
// string -> guid conversion
|
|
DWORD MyGuidFromStringA(
|
|
LPSTR sz,
|
|
GUID* pguid);
|
|
|
|
// string -> guid conversion
|
|
DWORD MyGuidFromStringW(
|
|
LPWSTR szW,
|
|
GUID* pguid);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|