Leaked source code of windows server 2003
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.

56 lines
733 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. sockets.h
  5. Abstract:
  6. Contains manifests, macros, types and prototypes for sockets.c
  7. Author:
  8. Richard L Firth (rfirth) 11-Oct-1994
  9. Revision History:
  10. 11-Oct-1994 rfirth
  11. Created
  12. --*/
  13. #if defined(__cplusplus)
  14. extern "C" {
  15. #endif
  16. //
  17. // prototypes
  18. //
  19. DWORD
  20. GopherConnect(
  21. IN LPVIEW_INFO ViewInfo
  22. );
  23. DWORD
  24. GopherDisconnect(
  25. IN LPVIEW_INFO ViewInfo,
  26. IN BOOL AbortConnection
  27. );
  28. DWORD
  29. GopherSendRequest(
  30. IN LPVIEW_INFO ViewInfo
  31. );
  32. DWORD
  33. GopherReceiveResponse(
  34. IN LPVIEW_INFO ViewInfo,
  35. OUT LPDWORD BytesReceived
  36. );
  37. #if defined(__cplusplus)
  38. }
  39. #endif