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.

29 lines
753 B

  1. #ifndef __REGISTRY_H__
  2. #define __REGISTRY_H__
  3. #ifndef UNDER_CE
  4. HRESULT Register(HMODULE hModule,
  5. const CLSID& clsid,
  6. const char* szFriendlyName,
  7. const char* szVerIndProgID,
  8. const char* szProgID) ;
  9. HRESULT Unregister(const CLSID& clsid,
  10. const char* szVerIndProgID,
  11. const char* szProgID) ;
  12. #else // UNDER_CE
  13. HRESULT Register(HMODULE hModule,
  14. const CLSID& clsid,
  15. LPCTSTR szFriendlyName,
  16. LPCTSTR szVerIndProgID,
  17. LPCTSTR szProgID) ;
  18. HRESULT Unregister(const CLSID& clsid,
  19. LPCTSTR szVerIndProgID,
  20. LPCTSTR szProgID) ;
  21. #endif // UNDER_CE
  22. VOID RegisterCategory(BOOL bRegister,
  23. const CATID &catId,
  24. REFCLSID clsId);
  25. #endif //__REGISTRY_H__