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
725 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. loopmgr.h
  5. Abstract:
  6. This module contains all of the code prototypes to drive the
  7. Loop Manager of 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. DWORD
  18. ServiceWait(
  19. );
  20. VOID
  21. ComputeRelativePollingTime(
  22. IN time_t LastTimeOutTime,
  23. IN BOOL bInitialLoad,
  24. IN DWORD dwRetryCount,
  25. IN PDWORD pWaitMilliseconds
  26. );
  27. VOID
  28. NotifyIpsecPolicyChange(
  29. );
  30. VOID
  31. SendPschedIoctl(
  32. );
  33. VOID
  34. PADeleteInUsePolicies(
  35. );
  36. #ifdef __cplusplus
  37. }
  38. #endif