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.

24 lines
1.0 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // CatHelp.h
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright (c) 1995-1999 Microsoft Corporation
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the prototypes for the component category helper functions
  13. //
  14. #include "comcat.h"
  15. // Helper function to create a component category and associated description
  16. HRESULT CreateComponentCategory(CATID catid, WCHAR* catDescription);
  17. // Helper function to register a CLSID as belonging to a component category
  18. HRESULT RegisterCLSIDInCategory(REFCLSID clsid, CATID catid);
  19. // Helper function to unregister a CLSID as belonging to a component category
  20. HRESULT UnRegisterCLSIDInCategory(REFCLSID clsid, CATID catid);