NWFSE_GARBAGE_COLLECTION_INFO
Returns information about failed requests. Used by NWGetGarbageCollectionInfo.
typedef struct {
SERVER_AND_VCONSOLE_INFO serverTimeAndVConsoleInfo ;
nuint16 reserved ;
nuint32 failedAllocRequestCount ;
nuint32 numOfAllocs ;
nuint32 noMoreMemAvailableCount ;
nuint32 numOfGarbageCollections ;
nuint32 garbageFoundSomeMem ;
nuint32 garbageNumOfChecks ;
} NWFSE_GARBAGE_COLLECTION_INFO;
uses calwin32
NWFSE_GARBAGE_COLLECTION_INFO = packed Record
serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;
reserved : nuint16;
padding : nuint16;
failedAllocRequestCount : nuint32;
numOfAllocs : nuint32;
noMoreMemAvailableCount : nuint32;
numOfGarbageCollections : nuint32;
garbageFoundSomeMem : nuint32;
garbageNumOfChecks : nuint32;
End;