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.

39 lines
947 B

  1. // misc temporary stubs
  2. #include "precomp.h"
  3. #pragma hdrstop
  4. // This function return the counter in minutes since last activity
  5. // occured on this connection.
  6. //
  7. // Parameters:
  8. // ConnectionId - identifies the connection passed in LineUp
  9. // to the IPX stack
  10. // IpxConnectionHandle - initially -1 and filled by the
  11. // IPX stack on return to the value
  12. // corresponding to the connection Id
  13. // In subsequent calls this is used.
  14. // WanInnnactivityCounter -
  15. //
  16. //
  17. DWORD
  18. IpxGetWanInactivityCounter(
  19. IN ULONG ConnectionId,
  20. IN PULONG IpxConnectionHandle,
  21. IN PULONG WanInactivityCounter)
  22. {
  23. *WanInactivityCounter = 0;
  24. return NO_ERROR;
  25. }
  26. // This function checks if the specified network exists on the net
  27. // If there is no router installed, it does a re-rip to find out
  28. //
  29. // Return: TRUE - The net number is in use
  30. // BOOL
  31. // IpxIsRoute(PUCHAR Network);