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.

15 lines
496 B

  1. #ifndef _REGSVR_H_
  2. #define _REGSVR_H_
  3. #include <objbase.h>
  4. HRESULT RegisterServer(HMODULE hModule, REFCLSID rclsid,
  5. LPCWSTR pszFriendlyName, LPCWSTR pszVerIndProgID, LPCWSTR pszProgID,
  6. DWORD dwThreadingModel, BOOL fInprocServer, BOOL fLocalServer,
  7. BOOL fLocalService, LPCWSTR pszLocalService, const CLSID* pclsidAppID);
  8. HRESULT UnregisterServer(REFCLSID rclsid, LPCWSTR pszVerIndProgID,
  9. LPCWSTR pszProgID);
  10. HRESULT RegisterAppID(const CLSID* pclsidAppID);
  11. #endif //_REGSVR_H_