home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / activexcontrol / webimage / cathelp.h < prev    next >
C/C++ Source or Header  |  1997-10-09  |  1KB  |  25 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // CatHelp.h
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright 1995 - 1997 Microsoft Corporation.  All Rights Reserved.
  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.  
  15. #include "comcat.h"
  16.  
  17. // Helper function to create a component category and associated description
  18. HRESULT CreateComponentCategory(CATID catid, WCHAR* catDescription);
  19.  
  20. // Helper function to register a CLSID as belonging to a component category
  21. HRESULT RegisterCLSIDInCategory(REFCLSID clsid, CATID catid);
  22.  
  23. // Helper function to unregister a CLSID as belonging to a component category
  24. HRESULT UnRegisterCLSIDInCategory(REFCLSID clsid, CATID catid);
  25.