dshcmd.c

来自「[随书类]Dos6.0源代码」· C语言 代码 · 共 69 行

C
69
字号
/*** 
*dshcmd.c - dumb shell debug command processor
*
*	Copyright <C> 1985, 1986, 1987 Microsoft Corporation
*
*Purpose:
*	For versions of QB-technology based BASIC built without the real user-
*	interface.
*
*******************************************************************************/

#include "version.h"

#if !CONTEXT_H
#include "context.h"
#endif

#if !CONINT_H
#include "conint.h"
#endif

#if !EXECUTOR_H
#include "executor.h"
#endif

#if !HEAP_H
#include "heap.h"
#endif

#if !LISTER_H
#include "lister.h"
#endif

#if !NAMES_H
#include "names.h"
#endif

#if !PARSER_H
#include "parser.h"
#endif

#ifndef RTINTERP_H
# include "rtinterp.h"
#endif

#if !RTTEMP_H
# include "rttemp.h"
#endif

#if !SCANNER_H
#include "scanner.h"
#endif

#if !TXTMGR_H
# include "txtmgr.h"
#endif

#if !UI_H
#include "ui.h"
#endif

#if !UTIL_H
#include "util.h"
#endif

#if !VARIABLE_H
#include "variable.h"
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?