rpc_ss_destroy_client_context(3rpc)
Reclaims the client memory resources for the context handle, and sets the context handle to NULL
Used by client applications.
Synopsis
#include <dce/rpc.h>
void rpc_ss_destroy_client_context(
void *p_unusable_context_handle);
Parameters
Input
p_unusable_context_handle Specifies the context handle that can no longer be accessed.
Description The rpc_ss_destroy_client_context( ) routine is used by the client application to reclaim the client resources used in maintaining an active context handle.
Only call this after a communications error makes the context handle unusable. When rpc_ss_destroy_client_context( ) reclaims the memory resources, it also sets the context handle to null.
Return Values No value is returned.
The rpc_ss_destroy_client_context( ) routine raises no exceptions.
|