24 lines
635 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
/*==========================================================================;
*
* 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_
#define GUID_STRING_LEN 39
HRESULT DVStringFromGUID(const GUID* lpguid, WCHAR* wszBuf, DWORD dwNumChars);
HRESULT DVGUIDFromString(const WCHAR* wszBuf, GUID* lpguid);
#endif