// Copyright (c) 1999 Microsoft Corporation #include #include #include #include typedef struct _PERF_INFO { double Realtime; double Bytes; long TransCount; } PERF_INFO, *PPERF_INFO; #define MS2S (1000) #define KILO (1<<10) void __cdecl main (int argc, char *argv[]); void process_args (int argc, char *argv[]); void pexit (PCHAR r, PCHAR s); void WSAexit(PCHAR r, PCHAR s); void work (void); void setup (PCHAR s); void output (void); __inline int GetCheckSum (PCHAR Buffer, int Length);