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.

16 lines
482 B

  1. #ifndef _HDService_
  2. #define _HDService_
  3. class CHDService
  4. {
  5. public:
  6. static void Main (DWORD dwReason);
  7. static HRESULT Install (BOOL fInstall, LPCWSTR pszCmdLine);
  8. static HRESULT RegisterServer (void);
  9. static HRESULT UnregisterServer (void);
  10. static HRESULT CanUnloadNow (void);
  11. static HRESULT GetClassObject (REFCLSID rclsid, REFIID riid, void** ppv);
  12. };
  13. #endif /* _HDService_ */