NWFSE_FILE_SERVER_INFO
Returns file server information. Used by NWGetFileServerInfo.
typedef struct
{
SERVER_AND_VCONSOLE_INFO serverTimeAndVConsoleInfo ;
nuint16 reserved ;
nuint32 NCPStationsInUseCount ;
nuint32 NCPPeakStationsInUseCount ;
nuint32 numOfNCPRequests ;
nuint32 serverUtilization ;
FSE_SERVER_INFO ServerInfo ;
FILE_SERVER_COUNTERS fileServerCounters ;
} NWFSE_FILE_SERVER_INFO;
uses calwin32
NWFSE_FILE_SERVER_INFO = packed Record
serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;
reserved : nuint16;
padding : nuint16;
NCPStationsInUseCount : nuint32;
NCPPeakStationsInUseCount : nuint32;
numOfNCPRequests : nuint32;
serverUtilization : nuint32;
ServerInfo : FSE_SERVER_INFO;
fileServerCounters : FILE_SERVER_COUNTERS;
End;