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.

37 lines
493 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. iphlpapi\guid.h
  5. Abstract:
  6. Header for guid.c
  7. Revision History:
  8. AmritanR Created
  9. --*/
  10. #ifndef __IPHLPAPI_GUID_H__
  11. #define __IPHLPAPI_GUID_H__
  12. DWORD
  13. ConvertGuidToString(
  14. IN GUID *pGuid,
  15. OUT PWCHAR pwszBuffer
  16. );
  17. DWORD
  18. ConvertStringToGuid(
  19. IN PWCHAR pwszGuid,
  20. IN ULONG ulStringLen,
  21. OUT GUID *pGuid
  22. );
  23. #endif // __IPHLPAPI_GUID_H__