33 lines
619 B
C++
33 lines
619 B
C++
//+----------------------------------------------------------------------------
|
|
//
|
|
// Job Scheduler Service
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1996.
|
|
//
|
|
// File: sched.hxx
|
|
//
|
|
// Contents: job scheduler classes' implementation header
|
|
//
|
|
// History: 08-Sep-95 EricB created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _SCHED_HXX_
|
|
#define _SCHED_HXX_
|
|
|
|
#include <debug.hxx>
|
|
#include <sch_cls.hxx>
|
|
#include <misc.hxx>
|
|
#include "..\inc\resource.h"
|
|
|
|
// constants
|
|
|
|
// global definitions
|
|
|
|
// prototypes
|
|
|
|
|
|
|
|
#endif // _SCHED_HXX_
|