RPC_IF_ID_VECTOR
typedef struct _RPC_IF_ID_VECTOR {
unsigned
long Count;
RPC_IF_ID
* IfHandl[1];
}
RPC_IF_ID_VECTOR;
Count
Specifies the
number of interface-identification data structures present in the array IfHandl.
IfHandl
Specifies an
array of pointers to interface-identification data structures that contains Count
elements.
Remarks
The
interface-identification (ID) vector data structure contains a list of
interfaces offered by a server. The interface ID vector contains a count member
(Count), followed by an array of pointers to interface IDs (RPC_IF_ID).
The interface
ID vector is a read-only vector. To obtain a vector of the interface IDs
registered by a server with the run-time library, an application calls the RpcMgmtInqIfIds
routine. To obtain a vector of the interface IDs exported by a server, an
application calls the RpcNsMgmtEntryInqIfIds routine.
The RPC
run-time library allocates memory for the interface ID vector. The application
calls the RpcIfIdVectorFree routine to free the interface ID vector.
See Also