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.

64 lines
812 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1997 - 1999
  3. Module Name:
  4. service.hxx
  5. Abstract:
  6. This is the header file for the Service-related functionality of SENS.
  7. Author:
  8. Gopal Parupudi <GopalP>
  9. [Notes:]
  10. optional-notes
  11. Revision History:
  12. GopalP 1/11/1998 Start.
  13. --*/
  14. #ifndef __SERVICE_HXX__
  15. #define __SERVICE_HXX__
  16. void
  17. ServiceStart(
  18. void
  19. );
  20. void
  21. ServiceStop(
  22. void
  23. );
  24. VOID WINAPI
  25. ServiceMain(
  26. DWORD argc,
  27. TCHAR* argv[]
  28. );
  29. DWORD WINAPI
  30. ServiceControl(
  31. DWORD dwCode,
  32. DWORD dwEventType,
  33. PVOID EventData,
  34. PVOID pData
  35. );
  36. BOOL
  37. ReportStatusToSCM(
  38. DWORD dwCurrentState,
  39. DWORD dwExitCode,
  40. DWORD dwWaitHint
  41. );
  42. #endif // __SERVICE_HXX__