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.

50 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. ipxif.h
  5. Abstract:
  6. This module contains the definitions of the some direct IPX stack IOCtls
  7. used by IPXCP
  8. Author:
  9. Stefan Solomon 11/08/1995
  10. Revision History:
  11. --*/
  12. // This function return the counter in minutes since last activity
  13. // occured on this connection.
  14. //
  15. // Parameters:
  16. // ConnectionId - identifies the connection passed in LineUp
  17. // to the IPX stack
  18. // IpxConnectionHandle - initially -1 and filled by the
  19. // IPX stack on return to the value
  20. // corresponding to the connection Id
  21. // In subsequent calls this is used.
  22. // WanInnnactivityCounter -
  23. //
  24. //
  25. DWORD
  26. IpxGetWanInactivityCounter(
  27. IN ULONG ConnectionId,
  28. IN PULONG IpxConnectionHandle,
  29. IN PULONG WanInactivityCounter);
  30. // This function checks if the specified network exists on the net
  31. // If there is no router installed, it does a re-rip to find out
  32. //
  33. // Return: TRUE - The net number is in use
  34. BOOL
  35. IpxIsRoute(PUCHAR Network);