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.

75 lines
768 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. ipsecspd.h
  5. Abstract:
  6. This module contains all of the code prototypes
  7. to drive the IPSecSPD Service.
  8. Author:
  9. abhisheV 30-September-1999
  10. Environment
  11. User Level: Win32
  12. Revision History:
  13. --*/
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #define SERVICE_CONTROL_NEW_LOCAL_POLICY 129
  18. #define SERVICE_CONTROL_FORCED_POLICY_RELOAD 130
  19. VOID WINAPI
  20. IPSecSPDServiceMain(
  21. IN DWORD dwArgc,
  22. IN LPTSTR * lpszArgv
  23. );
  24. DWORD
  25. IPSecSPDUpdateStatus(
  26. );
  27. VOID
  28. IPSecSPDControlHandler(
  29. IN DWORD dwOpCode
  30. );
  31. VOID
  32. IPSecSPDShutdown(
  33. IN DWORD dwErrorCode
  34. );
  35. VOID
  36. ClearSPDGlobals(
  37. );
  38. VOID
  39. ClearPAStoreGlobals(
  40. );
  41. #ifdef __cplusplus
  42. }
  43. #endif