*** empty log message ***
[cacao.git] / main.h
diff --git a/main.h b/main.h
index f6cf048860864c5f66ef6f4790b69b2059534265..35fc370bd70f8dbaa9183982f16aa3e7f99aeff9 100644 (file)
--- a/main.h
+++ b/main.h
@@ -1,4 +1,4 @@
-/* main.c - main header, contains global variables
+/* main.h - main header, contains global variables
 
    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
    Institut f. Computersprachen, TU Wien
@@ -27,7 +27,7 @@
 
    Authors: Christian Thalinger
 
-   $Id: main.h 963 2004-03-15 07:37:49Z jowenn $
+   $Id: main.h 1359 2004-07-28 10:48:36Z twisti $
 
 */
 
 
 #include "global.h"
 
-/* global variables */
-
-extern bool compileall;
-extern bool verbose;
-extern bool runverbose;
-extern bool verboseexception;
-extern bool collectverbose;
-
-extern bool loadverbose;         /* Print debug messages during loading */
-extern bool linkverbose;
-extern bool initverbose;         /* Log class initialization */ 
-
-extern bool opt_rt;
-extern bool opt_xta;
-extern bool opt_vta;
-
-extern bool opt_liberalutf;      /* Don't check overlong UTF-8 sequences */
 
-extern bool showmethods;
-extern bool showconstantpool;
-extern bool showutf;
-
-extern bool compileverbose;
-extern bool showstack;
-extern bool showdisassemble;
-extern bool showddatasegment;
-extern bool showintermediate;
-
-extern bool useinlining;
-extern bool inlinevirtuals;
-extern bool inlineexceptions;
-extern bool inlineparamopt;
-extern bool inlineoutsiders;
-
-extern bool checkbounds;
-extern bool checknull;
-extern bool opt_noieee;
-extern bool checksync;
-extern bool opt_loops;
-
-extern bool makeinitializations;
+/* global variables */
 
-extern bool getloadingtime;
-extern s8 loadingtime;
+extern char *classpath;
+extern char *mainstring;    /* class.method with main method */
 
-extern bool getcompilingtime;
-extern s8 compilingtime;
 
-extern int has_ext_instr_set;
+/* function prototypes */
 
-extern bool statistics;
+void cacao_exit(s4 status);
+void cacao_shutdown(s4 status);
 
-extern char mainString[256];    /* class.method with main method */
 #endif /* _MAIN_H */