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.

46 lines
798 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: guidtbl.hxx
  7. //
  8. // Contents:
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History:
  15. //
  16. //----------------------------------------------------------------------------
  17. #if 1 // #ifndef _CHICAGO_
  18. #ifndef __GUIDTBL_HXX__
  19. #define __GUIDTBL_HXX__
  20. class CGuidTable;
  21. class CGuidTableEntry;
  22. class CGuidTable : public CHashTable
  23. {
  24. public:
  25. CGuidTable( LONG& Status );
  26. ~CGuidTable();
  27. CGuidTableEntry * Lookup( CLSID * pClsid );
  28. };
  29. class CGuidTableEntry : public CId2TableElement
  30. {
  31. public:
  32. CGuidTableEntry( CLSID * pClsid );
  33. ~CGuidTableEntry();
  34. GUID Guid();
  35. };
  36. #endif
  37. #else
  38. #include "chicago\guidtbl.hxx"
  39. #endif