FILE_SERVER_COUNTERS
Returns information regarding the number of file packets received by the server.
typedef struct {
nuint16 tooManyHops ;
nuint16 unknownNetwork ;
nuint16 noSpaceForService ;
nuint16 noReceiveBuffers ;
nuint16 notMyNetwork ;
nuint32 netBIOSProgatedCount ;
nuint32 totalPacketsServiced ;
nuint32 totalPacketsRouted ;
} FILE_SERVER_COUNTERS;
uses calwin32
FILE_SERVER_COUNTERS = packed Record
tooManyHops : nuint16;
unknownNetwork : nuint16;
noSpaceForService : nuint16;
noReceiveBuffers : nuint16;
notMyNetwork : nuint16;
netBIOSProgatedCount : nuint32;
totalPacketsServiced : nuint32;
totalPacketsRouted : nuint32;
End;