RpcBindingFree function
The RpcBindingFree function releases binding-handle resources.
Syntax
RPC_STATUS RPC_ENTRY RpcBindingFree( RPC_BINDING_HANDLE *Binding );
Parameters
- Binding
-
Pointer to the server binding to be freed.
Return value
| Value | Meaning |
|---|---|
|
The call succeeded. |
|
The binding handle was invalid. |
|
This was the wrong kind of binding for the operation. |
Remarks
The RpcBindingFree function releases memory used by a server binding handle. Referenced binding information that was dynamically created during program execution is released as well. An application calls the RpcBindingFree function when it is finished using the binding handle. RPC binding handles must not be freed until all calls using the handle have completed; failure to do so will cause unpredictable results.
Binding handles are dynamically created by calling the following functions:
- RpcBindingCopy
- RpcBindingFromStringBinding
- RpcBindingServerFromClient
- RpcServerInqBindings
- RpcNsBindingImportNext
- RpcNsBindingSelect
If the operation successfully frees the binding, the Binding parameter returns a value of NULL.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- RpcBindingCopy
- RpcBindingFromStringBinding
- RpcBindingVectorFree
- RpcNsBindingImportNext
- RpcNsBindingLookupNext
- RpcNsBindingSelect
- RpcServerInqBindings