21 lines
311 B
C
21 lines
311 B
C
//
|
|
// Dll initialization and termination
|
|
//
|
|
|
|
#ifndef dllexp
|
|
#define dllexp __declspec( dllexport )
|
|
#endif
|
|
|
|
dllexp
|
|
BOOL
|
|
InitializeServiceRpc(
|
|
IN LPCSTR pszServiceName,
|
|
IN RPC_IF_HANDLE hRpcInterface
|
|
);
|
|
|
|
dllexp
|
|
CleanupServiceRpc(
|
|
VOID
|
|
);
|
|
|