Struct:ttUserBlock
#define trsocket.h /* * Data type to convey information about scattered send user buffers, * in the tfSocketScatteredSendTo() API, and tfIpScatteredSend() API. */ typedef struct tsUserBlock { /* Pointer to buffer (passed to the free routine) */ char TM_FAR * userBufferPtr; /* Pointer to beginning of data */ char TM_FAR * userDataPtr; /* Data length */ int userDataLength; } ttUserBlock; typedef ttUserBlock TM_FAR * ttUserBlockPtr;