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.

37 lines
855 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 1992 - 1996
  6. //
  7. // File: rpcif.h
  8. //
  9. // Contents: RPC interface support functions
  10. //
  11. //
  12. // History: 20-May-1996 Labeled MikeSw
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __RPCIF_H__
  16. #define __RPCIF_H__
  17. // #define USE_SECURE_RPC
  18. #define MAX_CONCURRENT_CALLS 10
  19. NTSTATUS StartRPC(LPTSTR, LPTSTR);
  20. NTSTATUS StartAllProtSeqs(void);
  21. NTSTATUS StopRPC(void);
  22. NTSTATUS SetAuthData();
  23. NTSTATUS RegisterKdcEps();
  24. NTSTATUS UnRegisterKdcEps();
  25. NTSTATUS RpcTransportNameRegister();
  26. NTSTATUS RpcTransportNameDeRegister();
  27. BOOLEAN RpcTransportCheckRegistrations();
  28. LPSTR RpcString(LPSTR);
  29. SECURITY_STATUS RPC_SECNTSTATUS(ULONG);
  30. #endif