PHYSICAL_LOCK
Returns physical lock information
typedef struct
{
nuint16 loggedCount;
nuint16 shareableLockCount;
nuint32 recordStart;
nuint32 recordEnd;
nuint16 connNumber;
nuint16 taskNumber;
nuint8 lockType;
} PHYSICAL_LOCK;
uses calwin32
PHYSICAL_LOCK = packed Record
{$IfDef N_ARCH_32}
loggedCount : nuint16;
{$else}
loggedCount : nuint8;
{$EndIf}
shareableLockCount : nuint16;
recordStart : nuint32;
recordEnd : nuint32;
connNumber : nuint16;
taskNumber : nuint16;
lockType : nuint8;
{$IfDef N_ARCH_32}
filler : nuint8;
filler2 : nuint16;
{$EndIf}
End;