Source code of Windows XP (NT5)
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.

34 lines
592 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: guids.c
  7. //
  8. // Contents: Random GUIDs
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 6-12-96 twillie Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. typedef struct
  21. {
  22. unsigned long x;
  23. unsigned short s1;
  24. unsigned short s2;
  25. unsigned char c[8];
  26. } CLSID, IID, GUID, CATID, SID;
  27. #ifdef __cplusplus
  28. }
  29. #endif