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.

44 lines
664 B

  1. /*++
  2. Copyright 2001 (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. ws2sdp.h
  5. Abstract:
  6. This module contains definitions for Sockets Direct Protocol (SDP) support.
  7. Revision History:
  8. --*/
  9. #ifndef _WS2SDP_H_
  10. #define _WS2SDP_H_
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /*
  15. * Connect data structure
  16. */
  17. typedef struct _WSASDPCONNECTDATA {
  18. USHORT Bufs;
  19. UCHAR MaxAdverts;
  20. DWORD RcvSize1;
  21. DWORD RcvSize2;
  22. } WSASDPCONNECTDATA, FAR * LPWSASDPCONNECTDATA;
  23. /*
  24. * Flag to set Solicited Event bit
  25. */
  26. #define MSG_SOLICITED 0x10000
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif // _WS2SDP_H_