RpcBindingVectorFree function
The RpcBindingVectorFree function frees the binding handles contained in the vector and the vector itself.
Syntax
RPC_STATUS RPC_ENTRY RpcBindingVectorFree( RPC_BINDING_VECTOR **BindingVector );
Parameters
- BindingVector
-
Pointer to a pointer to a vector of server binding handles. On return, the pointer is set to NULL.
Return value
| Value | Meaning |
|---|---|
|
The call succeeded. |
|
The argument was invalid. |
|
The binding handle was invalid. |
|
This was the wrong kind of binding for the operation. |
Remarks
An application calls the RpcBindingVectorFree function to release the memory used to store a vector of server binding handles. The function frees both the binding handles and the vector itself.
A server obtains a vector of binding handles by calling the RpcServerInqBindings function. A client obtains a vector of binding handles by calling the RpcNsBindingLookupNext function.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also