Source code of Windows XP (NT5)
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.

20 lines
311 B

  1. //
  2. // Dll initialization and termination
  3. //
  4. #ifndef dllexp
  5. #define dllexp __declspec( dllexport )
  6. #endif
  7. dllexp
  8. BOOL
  9. InitializeServiceRpc(
  10. IN LPCSTR pszServiceName,
  11. IN RPC_IF_HANDLE hRpcInterface
  12. );
  13. dllexp
  14. CleanupServiceRpc(
  15. VOID
  16. );