PHYSICAL_LOCKS
Returns a list of physical locks
typedef struct
{
nuint16 nextRequest;
nuint16 numRecords;
PHYSICAL_LOCK locks[32];
nuint16 curRecord;
nuint8 reserved[8];
} PHYSICAL_LOCKS;
uses calwin32
PHYSICAL_LOCKS = packed Record
nextRequest : nuint16;
numRecords : nuint16;
locks : Array[0..31] Of PHYSICAL_LOCK;
curRecord : nuint16;
reserved : Array[0..7] Of nuint8;
End;