windows-nt/Source/XPSP1/NT/net/ipsec/spd/server/ipsecspd.h
2020-09-26 16:20:57 +08:00

76 lines
768 B
C

/*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
ipsecspd.h
Abstract:
This module contains all of the code prototypes
to drive the IPSecSPD Service.
Author:
abhisheV 30-September-1999
Environment
User Level: Win32
Revision History:
--*/
#ifdef __cplusplus
extern "C" {
#endif
#define SERVICE_CONTROL_NEW_LOCAL_POLICY 129
#define SERVICE_CONTROL_FORCED_POLICY_RELOAD 130
VOID WINAPI
IPSecSPDServiceMain(
IN DWORD dwArgc,
IN LPTSTR * lpszArgv
);
DWORD
IPSecSPDUpdateStatus(
);
VOID
IPSecSPDControlHandler(
IN DWORD dwOpCode
);
VOID
IPSecSPDShutdown(
IN DWORD dwErrorCode
);
VOID
ClearSPDGlobals(
);
VOID
ClearPAStoreGlobals(
);
#ifdef __cplusplus
}
#endif