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.

29 lines
660 B

  1. /*
  2. Copyright (c) 1998, Microsoft Corporation, all rights reserved
  3. Description:
  4. History:
  5. */
  6. #ifndef _TIMER__H_
  7. #define _TIMER__H_
  8. #include "rasiphlp_.h"
  9. #include <nturtl.h>
  10. #include "helper.h"
  11. #include "timer.h"
  12. extern CRITICAL_SECTION RasTimrCriticalSection;
  13. #define TIMER_PERIOD 30*1000 // 30 sec (in milliseconds)
  14. HANDLE RasDhcpTimerQueueHandle = NULL;
  15. HANDLE RasDhcpTimerHandle = NULL;
  16. TIMERLIST* RasDhcpTimerListHead = NULL;
  17. HANDLE RasDhcpTimerShutdown = NULL;
  18. time_t RasDhcpTimerPrevTime = 0;
  19. #endif // #ifndef _TIMER__H_