CONN_LOGICAL_LOCKS
Returns a connection’s logical lock list
typedef struct
{
nuint16 nextRequest;
nuint16 numRecords;
nuint8 records[508];
nuint16 curOffset;
nuint16 curRecord;
} CONN_LOGICAL_LOCKS;
uses calwin32
CONN_LOGICAL_LOCKS = 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.