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.

58 lines
755 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1996 - 1999
  3. Module Name:
  4. CtrlLib
  5. Abstract:
  6. This header file describes the service startup and shutdown routines.
  7. Author:
  8. Doug Barlow (dbarlow) 2/11/1997
  9. Environment:
  10. Win32
  11. Notes:
  12. --*/
  13. #ifndef _CTRLLIB_H_
  14. #define _CTRLLIB_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. extern DWORD
  19. InstallCalais(
  20. LPCTSTR szFile,
  21. LPCTSTR szUser,
  22. LPCTSTR szPasswd);
  23. extern DWORD
  24. StartCalais(
  25. LPCTSTR szFile,
  26. LPCTSTR szUser,
  27. LPCTSTR szPasswd);
  28. extern DWORD
  29. RestartCalais(
  30. LPCTSTR szFile,
  31. LPCTSTR szUser,
  32. LPCTSTR szPasswd);
  33. extern DWORD
  34. StopCalais(
  35. void);
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif // _CTRLLIB_H_