CATHELP.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. #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);