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.

17 lines
418 B

  1. //--------------------------------------------------------------------
  2. // ServiceHost - header
  3. // Copyright (C) Microsoft Corporation, 1999
  4. //
  5. // Created by: Louis Thomas (louisth), 9-9-99
  6. //
  7. // Stuff for hosting a service dll
  8. //
  9. #ifndef SERVICE_HOST_H
  10. #define SERVICE_HOST_H
  11. HRESULT RunAsService(void);
  12. HRESULT RunAsTestService(void);
  13. HRESULT RegisterDll(void);
  14. HRESULT UnregisterDll(void);
  15. #endif //SERVICE_HOST_H