CONN_SEMAPHORE
Returns semaphore information list
typedef struct
{
nuint16 openCount;
nuint16 semaphoreValue;
nuint16 taskNumber;
nstr8 semaphoreName[128];
} CONN_SEMAPHORE;
uses calwin32
CONN_SEMAPHORE = packed Record
openCount : nuint16;
semaphoreValue : nuint16;
taskNumber : nuint16;
semaphoreName : Array[0..127] Of nstr8;
End;