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

// misc temporary stubs
#include "precomp.h"
#pragma hdrstop
// This function return the counter in minutes since last activity
// occured on this connection.
//
// Parameters:
// ConnectionId - identifies the connection passed in LineUp
// to the IPX stack
// IpxConnectionHandle - initially -1 and filled by the
// IPX stack on return to the value
// corresponding to the connection Id
// In subsequent calls this is used.
// WanInnnactivityCounter -
//
//
DWORD
IpxGetWanInactivityCounter(
IN ULONG ConnectionId,
IN PULONG IpxConnectionHandle,
IN PULONG WanInactivityCounter)
{
*WanInactivityCounter = 0;
return NO_ERROR;
}
// This function checks if the specified network exists on the net
// If there is no router installed, it does a re-rip to find out
//
// Return: TRUE - The net number is in use
// BOOL
// IpxIsRoute(PUCHAR Network);