![]() |
| Home |
|
|
Function RTPCGetTupleDataRTPCGetTupleData retrieves the data of a tuple previously located with RTPCGetFirstTuple or RTPCGetNextTuple:
int RTPCGetTupleData (int Socket,
RTPCTupleInfo * Handle,
void * Data,
int MaxDataLen,
int * Len);
ParametersSocketThe socket number to read from. Handlemust point to an RTPCTupleInfo structure previously initialized by a successfull call to RTPCGetFirstTuple or RTPCGetNextTuple. DataPoints to a data buffer to receive the tuple. MaxDataLenSpecifies the length of the supplied buffer. LenIf the function succeeds, the length of the tuple is returned in *Len. return valueIf the function succeeds, the return value is RTPC_SUCCESS. If it fails, it returns an error code, please see section PC Cards (PCMCIA) for details. More information about the structure of CIS tuples is available in the PCMCIA Standard.
|