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.
23 lines
818 B
23 lines
818 B
//---------------------------------------------------------------------------
|
|
// MCS.h
|
|
//
|
|
// Main header file for all MCS applications.
|
|
//
|
|
// (c) Copyright 1995-1998, Mission Critical Software, Inc., All Rights Reserved
|
|
//
|
|
// Proprietary and confidential to Mission Critical Software, Inc.
|
|
//---------------------------------------------------------------------------
|
|
#ifndef MCSINC_Mcs_h
|
|
#define MCSINC_Mcs_h
|
|
#ifdef __cplusplus
|
|
|
|
// Mandatory Pragma Definitions.
|
|
// #pragma warning( 3 : 4706 ) // assignment within if, while, etc.
|
|
|
|
// Header Files Common To All MCS Modules.
|
|
#include "McsDebug.h" // contains debug macros, it depends on
|
|
// the following files: McsDebug.cpp,
|
|
// McsDebugUtil.h and McsDebugUtil.cpp.
|
|
|
|
#endif /* __cplusplus */
|
|
#endif /* MCSINC_Mcs_h */
|