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
688 B

  1. /*++
  2. Copyright (c) 1997 - 98, Microsoft Corporation
  3. Module Name:
  4. rtmtimer.h
  5. Abstract:
  6. Contains definitions for timer callbacks for
  7. handling functions like aging out routes etc.
  8. Author:
  9. Chaitanya Kodeboyina (chaitk) 14-Sep-1998
  10. Revision History:
  11. --*/
  12. #ifndef __ROUTING_RTMTIMER_H__
  13. #define __ROUTING_RTMTIMER_H__
  14. VOID
  15. NTAPI
  16. RouteExpiryTimeoutCallback (
  17. IN PVOID Context,
  18. IN BOOLEAN TimeOut
  19. );
  20. VOID
  21. NTAPI
  22. RouteHolddownTimeoutCallback (
  23. IN PVOID Context,
  24. IN BOOLEAN TimeOut
  25. );
  26. #endif //__ROUTING_RTMTIMER_H__