mirror of https://github.com/tongzx/nt5src
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.
40 lines
526 B
40 lines
526 B
#ifndef _MD_COEXP_
|
|
#define _MD_COEXP_
|
|
|
|
STDAPI BootDllRegisterServer(void);
|
|
STDAPI BootDllUnregisterServer(void);
|
|
|
|
BOOL
|
|
InitComLb(
|
|
);
|
|
|
|
BOOL
|
|
TerminateComLb(
|
|
);
|
|
|
|
BOOL
|
|
InitGlobals(
|
|
);
|
|
|
|
BOOL
|
|
TerminateGlobals(
|
|
);
|
|
|
|
BOOL
|
|
ReportIisLbEvent(
|
|
WORD wType,
|
|
DWORD dwEventId,
|
|
WORD cNbStr,
|
|
LPCWSTR* pStr
|
|
);
|
|
|
|
// internal name of the service
|
|
|
|
#define SZSERVICENAME "IISLoadBalancing"
|
|
|
|
// internal name of the driver
|
|
|
|
#define SZDRIVERNAME "IISLBK"
|
|
#define LSZDRIVERNAME L"IISLBK"
|
|
|
|
#endif
|