qbidata.c
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:
操作系统开发
开发平台:
Visual C++
- /***
- *qbidata.c - allocate global variable storage for EXTERNAL variables
- *
- * Copyright <C> 1986, Microsoft Corporation
- *
- *Purpose:
- * Variables declared with the EXTERNAL declaration are included as
- * 'EXTERNAL' in every other module, but not in this module - - - this
- * module is linked in for the express purpose of allocating storage for
- * these variables (mrsCur, etc.) in just one place. DEFINE_VARIABLES
- * should be OFF in every module but this one (see interp.h & switch.h).
- *
- *******************************************************************************/
- #define DEFINE_VARIABLES ON /* note: must do this BEFORE version.h included! */
- #include "version.h"
- #if !CONTEXT_H
- #include "context.h"
- #endif
- #if !EXECUTOR_H
- #include "executor.h"
- #endif
- #if !HEAP_H
- #include "heap.h"
- #endif
- #if !PARSER_H
- #include "parser.h"
- #endif
- #if !PSINT_H
- #include "psint.h"
- #endif
- #if !RTINTERP_H
- #include "rtinterp.h"
- #endif
- #if !SCANNER_H
- #include "scanner.h"
- #endif
- #if !TXTINT_H
- #include "txtint.h"
- #endif
- #if !TXTMGR_H
- #include "txtmgr.h"
- #endif
- #if !UI_H
- #include "ui.h"
- #endif
- #if !VARIABLE_H
- #include "variable.h"
- #endif