NAME rpc_protseq_vector_free - Frees the memory used by a vector and its protocol sequences Used by client or server applications. SYNOPSIS #include <dce/rpc.h> void rpc_protseq_vector_free( rpc_protseq_vector_t **protseq_vector, unsigned32 *status ); PARAMETERS Input/Output protseq_vector Specifies the address of a pointer to a vector of protocol sequences. On return the pointer is set to NULL. Output status Returns the status code from this routine. This status code indicates whether the routine completed successfully or, if not, why not. The possible status code and its meaning is as follows: rpc_s_ok Success. DESCRIPTION The rpc_protseq_vector_free() routine frees the memory used to store a vector of protocol sequences. The freed memory includes both the protocol sequences and the vector itself. Call rpc_network_inq_protseqs() to obtain a vector of protocol sequences. Follow a call to rpc_network_inq_protseqs() with a call to rpc_protseq_vector_free(). RETURN VALUES No value is returned. RELATED INFORMATION Functions: rpc_network_inq_protseqs