Leaked source code of windows server 2003
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

  1. /*==========================================================================;
  2. *
  3. * Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: guidutil.h
  6. * Content: Some GUID related utility functions
  7. *
  8. * History:
  9. * Date By Reason
  10. * ============
  11. * 08/19/99 pnewson created
  12. ***************************************************************************/
  13. #ifndef _GUIDUTIL_H_
  14. #define _GUIDUTIL_H_
  15. #include <windows.h>
  16. #define GUID_STRING_LEN 39
  17. HRESULT DVStringFromGUID(const GUID* lpguid, WCHAR* wszBuf, DWORD dwNumChars);
  18. HRESULT DVGUIDFromString(const WCHAR* wszBuf, GUID* lpguid);
  19. #endif