Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
837 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1996 - 1999
  3. Module Name:
  4. ipclnt.h
  5. Abstract:
  6. Io completion port client header.
  7. Author:
  8. Win32 SDK sample
  9. Revision History:
  10. MarioGo 3/3/1996 Cloned from win32 sdk sockets sample.
  11. --*/
  12. #include <windows.h>
  13. #include <tchar.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <stdarg.h>
  18. #include <winsock.h>
  19. #include <wsipx.h>
  20. #include <commdef.h>
  21. BOOL fVerbose;
  22. BOOL fRandom;
  23. DWORD dwIterations;
  24. DWORD dwTransferSize;
  25. IN_ADDR RemoteIpAddress;
  26. CLIENT_IO_BUFFER SendBuffer;
  27. CHAR ReceiveBuffer[CLIENT_OUTBOUND_BUFFER_MAX];
  28. VOID
  29. WINAPI
  30. ShowUsage (
  31. VOID
  32. );
  33. VOID
  34. WINAPI
  35. ParseSwitch (
  36. CHAR chSwitch,
  37. int *pArgc,
  38. char **pArgv[]
  39. );
  40. VOID
  41. WINAPI
  42. CompleteBenchmark (
  43. VOID
  44. );