windows-nt/Source/XPSP1/NT/printscan/print/spooler/inetsrv/sleeper.h
2020-09-26 16:20:57 +08:00

27 lines
540 B
C

/***********************************************************************
*
* Copyright (c) 1997 Microsoft Corporation
*
*
* Module Name : sleeper.h
*
* Abstract :
*
* This module contains the structure definitions and prototypes for the
* sleeper class in HTTP Printers Server Extension.
*
******************/
#ifndef _SLEEPER_H
#define _SLEEPER_H
// The sleep wake up every 5 minutes
#define SLEEP_INTERVAL 300000
void InitSleeper (void);
void ExitSleeper (void);
void SleeperSchedule (HANDLE hQuitRequestEvent);
#endif