Leaked source code of windows server 2003
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.

42 lines
719 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1991 - 1999
  3. Module Name:
  4. rpcqos.h
  5. Abstract:
  6. This header file serves one purpose only: it allows the named pipe client
  7. side loadable transport for NT and the local RPC over LPC to use a common
  8. routine for parsing the security information from the network options.
  9. Author:
  10. Michael Montague (mikemon) 10-Apr-1992
  11. Revision History:
  12. --*/
  13. #ifndef __RPCQOS_H__
  14. #define __RPCQOS_H__
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. RPCRTAPI
  19. RPC_STATUS
  20. I_RpcParseSecurity (
  21. IN RPC_CHAR * NetworkOptions,
  22. OUT SECURITY_QUALITY_OF_SERVICE * SecurityQos
  23. );
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* __RPCQOS_H__ */