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.

47 lines
815 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: ktcontrol.h
  8. //
  9. // Contents: Kerberos Tunneller, service control infrastructure
  10. //
  11. // History: 28-Jun-2001 t-ryanj Created
  12. //
  13. //------------------------------------------------------------------------
  14. #ifndef __KTCONTROL_H__
  15. #define __KTCONTROL_H__
  16. #include <windows.h>
  17. #include <tchar.h>
  18. BOOL
  19. KtStartServiceCtrlDispatcher(
  20. VOID
  21. );
  22. BOOL
  23. KtIsStopped(
  24. VOID
  25. );
  26. VOID
  27. KtServiceControlEvent(
  28. DWORD dwControl
  29. );
  30. extern HANDLE KtIocp;
  31. //
  32. // Completion keys for use with KtIocp
  33. //
  34. enum _COMPKEY {
  35. KTCK_SERVICE_CONTROL,
  36. KTCK_CHECK_CONTEXT
  37. };
  38. #endif __KTCONTROL_H__