Moved some globals to cmglobal.c

date	2000.05.18.17.39.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:23:49 +00:00
parent d3e2cc0477
commit c363de660d

View File

@ -131,6 +131,9 @@
MODULE_NAME ("dbinput");
/*
* Globals that are specific to the debugger
*/
char LineBuf[80];
char ParsedBuf[80];
@ -139,13 +142,13 @@ char DebugFilename[40];
char *Args[DB_MAX_ARGS];
char *Buffer;
char *Filename = NULL;
BOOLEAN OutputToFile = FALSE;
UINT32 Gbl_DbDebugLevel = 0x0FFFFFFF;
UINT32 Gbl_DbConsoleDebugLevel = DEBUG_DEFAULT;
UINT32 Gbl_MethodBreakpoint = 0;
BOOLEAN Gbl_MethodExecuting = FALSE;
BOOLEAN OutputToFile = FALSE;
UINT8 Gbl_DbOutputFlags = DB_CONSOLE_OUTPUT;
BOOLEAN Gbl_DbTerminateThreads = FALSE;
UINT32 Gbl_MethodBreakpoint = 0;
BOOLEAN opt_tables = FALSE;