mirror of https://github.com/lianthony/NT4.0
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.
41 lines
660 B
41 lines
660 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
rpcqos.h
|
|
|
|
Abstract:
|
|
|
|
This header file serves one purpose only: it allows the named pipe client
|
|
side loadable transport for NT and the local RPC over LPC to use a common
|
|
routine for parsing the security information from the network options.
|
|
|
|
Author:
|
|
|
|
Michael Montague (mikemon) 10-Apr-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __RPCQOS_H__
|
|
#define __RPCQOS_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
RPC_STATUS
|
|
I_RpcParseSecurity (
|
|
IN RPC_CHAR * NetworkOptions,
|
|
OUT SECURITY_QUALITY_OF_SERVICE * SecurityQos
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __RPCQOS_H__ */
|
|
|