39 lines
811 B
C
39 lines
811 B
C
|
|
||
|
/******************************************************************************
|
||
|
|
||
|
Copyright(c) Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
CommonHeaderFiles.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This module includes the common files needed for all the source files
|
||
|
in this project.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
G.Surender Reddy 30-oct-2000
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
G.Surender Reddy 30-oct-2000 : Created it
|
||
|
Venu Gopal Choudary 12-Mar-2001 : Added run.h and end.h
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#ifndef __COMHEADERFILES_H
|
||
|
#define __COMHEADERFILES_H
|
||
|
|
||
|
//common include files needed for all other cpp files in this project
|
||
|
|
||
|
#include "scheduledtasks.h"
|
||
|
#include "resource.h"
|
||
|
#include "create.h"
|
||
|
#include "query.h"
|
||
|
#include "change.h"
|
||
|
#include "run.h"
|
||
|
#include "end.h"
|
||
|
|
||
|
#endif //__COMHEADERFILES_H
|