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.

26 lines
635 B

  1. /***************************************************************************
  2. *
  3. * tdspx.h
  4. *
  5. * This module contains private Transport Driver defines and structures
  6. *
  7. * Copyright 1998, Microsoft
  8. *
  9. ****************************************************************************/
  10. #define htons(x) ((((x) >> 8) & 0x00FF) | (((x) << 8) & 0xFF00))
  11. /*
  12. * Well known Citrix SPX socket
  13. */
  14. // #define CITRIX_SPX_SOCKET 0x85BA // registered Novell socket number
  15. #define CITRIX_SPX_SOCKET 0x1090 // old winview socket
  16. #define DD_IPX_DEVICE_NAME L"\\Device\\NwlnkIpx"
  17. #define DD_SPX_DEVICE_NAME L"\\Device\\NwlnkSpx\\SpxStream"