mirror of https://github.com/tongzx/nt5src
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
688 B
39 lines
688 B
/*++
|
|
|
|
Copyright (c) 1997 - 98, Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
rtmtimer.h
|
|
|
|
Abstract:
|
|
|
|
Contains definitions for timer callbacks for
|
|
handling functions like aging out routes etc.
|
|
|
|
Author:
|
|
|
|
Chaitanya Kodeboyina (chaitk) 14-Sep-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __ROUTING_RTMTIMER_H__
|
|
#define __ROUTING_RTMTIMER_H__
|
|
|
|
VOID
|
|
NTAPI
|
|
RouteExpiryTimeoutCallback (
|
|
IN PVOID Context,
|
|
IN BOOLEAN TimeOut
|
|
);
|
|
|
|
VOID
|
|
NTAPI
|
|
RouteHolddownTimeoutCallback (
|
|
IN PVOID Context,
|
|
IN BOOLEAN TimeOut
|
|
);
|
|
|
|
#endif //__ROUTING_RTMTIMER_H__
|