CONN_SEMAPHORES
Returns a connection’s semaphore list
typedef struct
{
nuint16 nextRequest;
nuint16 numRecords;
nuint8 records[508];
nuint16 curOffset;
nuint16 curRecord;
} CONN_SEMAPHORES;
uses calwin32
CONN_SEMAPHORES = packed Record
nextRequest : nuint16;
numRecords : nuint16;
records : Array[0..507] Of nuint8;
curOffset : nuint16;
curRecord : nuint16;
End;
You must not modify the values in nextRequest, curOffset and curRecord; they are used internally to return the next record in a request.