RpcNetworkInqProtseqs function
The RpcNetworkInqProtseqs function returns all protocol sequences supported by both the RPC run-time library and the operating system. Client applications often use RpcNetworkIsProtseqValid. For a list of Microsoft RPC's supported protocol sequences, see String Binding.
Syntax
RPC_STATUS RPC_ENTRY RpcNetworkInqProtseqs( RPC_PROTSEQ_VECTOR **ProtSeqVector );
Parameters
- ProtSeqVector
-
Returns a pointer to a pointer to a protocol sequence vector.
Return value
| Value | Meaning |
|---|---|
|
The call succeeded. |
|
No supported protocol sequences. |
Remarks
A server application calls the RpcNetworkInqProtseqs function to obtain a vector containing the protocol sequences supported by both the RPC run-time library and the operating system. If there are no supported protocol sequences, this function returns the RPC_S_NO_PROTSEQS status code and a ProtSeqVector parameter value of NULL.
The server is responsible for calling the RpcProtseqVectorFree function to release the memory used by the vector.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names |
RpcNetworkInqProtseqsW (Unicode) and RpcNetworkInqProtseqsA (ANSI) |
See also