CONN_PHYSICAL_LOCKS
Returns a connection’s physical lock list
typedef struct
{
nuint16 nextRequest;
nuint16 numRecords;
CONN_PHYSICAL_LOCK locks[51];
nuint16 curRecord;
nuint8 reserved[22];
} CONN_PHYSICAL_LOCKS;
uses calwin32
CONN_PHYSICAL_LOCKS = packed Record
nextRequest : nuint16;
numRecords : nuint16;
locks : Array[0..50] Of CONN_PHYSICAL_LOCK;
curRecord : nuint16;
reserved : Array[0..21] Of nuint8;
End;
You must not modify the values in nextRequest, curOffset and curRecord; they are used internally to return the next record in a request.