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.
25 lines
659 B
25 lines
659 B
/*==========================================================================;
|
|
*
|
|
* Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* File: guidutil.h
|
|
* Content: Some GUID related utility functions
|
|
*
|
|
* History:
|
|
* Date By Reason
|
|
* ============
|
|
* 08/19/99 pnewson created
|
|
***************************************************************************/
|
|
|
|
#ifndef _GUIDUTIL_H_
|
|
#define _GUIDUTIL_H_
|
|
|
|
#include <windows.h>
|
|
|
|
#define GUID_STRING_LEN 39
|
|
|
|
HRESULT DVStringFromGUID(const GUID* lpguid, WCHAR* wszBuf, DWORD dwNumChars);
|
|
HRESULT DVGUIDFromString(const WCHAR* wszBuf, GUID* lpguid);
|
|
|
|
#endif
|
|
|