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.

41 lines
652 B

  1. /*--
  2. Copyright (C) Microsoft Corporation, 1999 - 1999
  3. Module Name:
  4. ipxtest.h
  5. Abstract:
  6. Header file for ipx test
  7. Author:
  8. 4-Aug-1998 (t-rajkup)
  9. Revision History:
  10. None.
  11. --*/
  12. #ifndef HEADER_IPXTEST
  13. #define HEADER_IPXTEST
  14. #define INVALID_HANDLE (HANDLE)(-1)
  15. #define REORDER_ULONG(_Ulong) \
  16. ((((_Ulong) & 0xff000000) >> 24) | \
  17. (((_Ulong) & 0x00ff0000) >> 8) | \
  18. (((_Ulong) & 0x0000ff00) << 8) | \
  19. (((_Ulong) & 0x000000ff) << 24))
  20. HRESULT InitIpxConfig(NETDIAG_PARAMS *pParams,
  21. NETDIAG_RESULT *pResults);
  22. #define IPX_TYPE_LAN 1
  23. #define IPX_TYPE_UP_WAN 2
  24. #define IPX_TYPE_DOWN_WAN 3
  25. #endif