windows-nt/Source/XPSP1/NT/shell/services/hdsrv/lib/regsvr.h
2020-09-26 16:20:57 +08:00

16 lines
496 B
C

#ifndef _REGSVR_H_
#define _REGSVR_H_
#include <objbase.h>
HRESULT RegisterServer(HMODULE hModule, REFCLSID rclsid,
LPCWSTR pszFriendlyName, LPCWSTR pszVerIndProgID, LPCWSTR pszProgID,
DWORD dwThreadingModel, BOOL fInprocServer, BOOL fLocalServer,
BOOL fLocalService, LPCWSTR pszLocalService, const CLSID* pclsidAppID);
HRESULT UnregisterServer(REFCLSID rclsid, LPCWSTR pszVerIndProgID,
LPCWSTR pszProgID);
HRESULT RegisterAppID(const CLSID* pclsidAppID);
#endif //_REGSVR_H_