40 lines
743 B
C
40 lines
743 B
C
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1997
|
|
//
|
|
// File: common.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
// Common.h
|
|
//
|
|
// Include files that are used frequently into the project.
|
|
//
|
|
|
|
#ifndef _COMMON_H_INCLUDED
|
|
#define _COMMON_H_INCLUDED
|
|
|
|
|
|
#ifdef _DEBUG
|
|
#define DEBUG
|
|
#endif
|
|
|
|
// Generic Includes
|
|
#include "DbgUtil.h"
|
|
#include "uiutil.h"
|
|
|
|
// Private Includes
|
|
#include "resource.h"
|
|
#include "SimRc.h"
|
|
#include "SimUtil.h"
|
|
#include "SimData.h"
|
|
#include "SimProp.h"
|
|
#include "SimProp1.h"
|
|
#include "SimProp2.h"
|
|
#include "SimProp3.h"
|
|
#include "SimCert.h"
|
|
|
|
#endif // ~_COMMON_H_INCLUDED
|