Leaked source code of windows server 2003
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.

52 lines
1.2 KiB

  1. //============================================================================
  2. // Copyright (c) 1995, Microsoft Corporation
  3. //
  4. // File: timer.h
  5. //
  6. // History:
  7. // V Raman June-25-1997 Created.
  8. //
  9. // Prototyes for functions to manage ageing out of MFEs.
  10. //============================================================================
  11. #ifndef _TIMER_H_
  12. #define _TIMER_H_
  13. //----------------------------------------------------------------------------
  14. // TIMER_CONTEXT
  15. //
  16. // structure used to pass context information to timer routines
  17. //----------------------------------------------------------------------------
  18. typedef struct _TIMER_CONTEXT
  19. {
  20. DWORD dwSourceAddr;
  21. DWORD dwSourceMask;
  22. DWORD dwGroupAddr;
  23. DWORD dwGroupMask;
  24. DWORD dwIfIndex;
  25. DWORD dwIfNextHopAddr;
  26. } TIMER_CONTEXT, *PTIMER_CONTEXT;
  27. DWORD
  28. DeleteFromForwarder(
  29. DWORD dwEntryCount,
  30. PIPMCAST_DELETE_MFE pimdmMfes
  31. );
  32. VOID
  33. MFETimerProc(
  34. PVOID pvContext,
  35. BOOLEAN pbFlag
  36. );
  37. #endif //_TIMER_H_