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.

26 lines
566 B

  1. /***********************************************************************
  2. *
  3. * Copyright (c) 1997 Microsoft Corporation
  4. *
  5. *
  6. * Module Name : sleeper.h
  7. *
  8. * Abstract :
  9. *
  10. * This module contains the structure definitions and prototypes for the
  11. * sleeper class in HTTP Printers Server Extension.
  12. *
  13. ******************/
  14. #ifndef _SLEEPER_H
  15. #define _SLEEPER_H
  16. // The sleep wake up every 5 minutes
  17. #define SLEEP_INTERVAL 300000
  18. void InitSleeper (void);
  19. void ExitSleeper (void);
  20. void SleeperSchedule (HANDLE hQuitRequestEvent);
  21. #endif