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.

42 lines
769 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. #ifndef __GUIDTBL_HXX__
  18. #define __GUIDTBL_HXX__
  19. class CGuidTable;
  20. class CGuidTableEntry;
  21. class CGuidTable : public CHashTable
  22. {
  23. public:
  24. CGuidTable( LONG& Status );
  25. ~CGuidTable();
  26. CGuidTableEntry * Lookup( CLSID * pClsid );
  27. };
  28. class CGuidTableEntry : public CId2TableElement
  29. {
  30. public:
  31. CGuidTableEntry( CLSID * pClsid );
  32. ~CGuidTableEntry();
  33. GUID Guid();
  34. };
  35. #endif