mirror of https://github.com/tongzx/nt5src
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
540 B
26 lines
540 B
/***********************************************************************
|
|
*
|
|
* 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
|