2025-04-27 07:49:33 -04:00

21 lines
331 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
);