NWFSE_ACCT_INFO
Returns Server Environment accounting information. Used by NWGetServerConnInfo.
typedef struct
{
nuint32 holdTime;
nuint32 holdAmt;
nuint32 chargeAmt;
nuint32 heldConnectTimeInMinutes;
nuint32 heldRequests;
nuint8 heldBytesRead[6];
nuint8 heldBytesWritten[6];
} NWFSE_ACCT_INFO;
uses calwin32
NWFSE_ACCT_INFO = packed RECORD
holdTime : nuint32;
holdAmt : nuint32;
chargeAmt : nuint32;
heldConnectTimeInMinutes : nuint32;
heldRequests : nuint32;
heldBytesRead : Array[1..6] of nuint8;
heldBytesWritten : Array[1..6] of nuint8;
End;
The hold fields are designed to hold information as the server is reserving and calculating how much of the object's account balance will be charged. Once the charge is made against the object's account, the hold fields are cleared.