diff options
author | shennetsind <ind@henn.et> | 2013-03-17 01:12:33 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-03-17 01:12:33 -0300 |
commit | 3b89a135dcde9779bd0537cd136a7c34cfadbe3f (patch) | |
tree | e963c1cf1f5e0168e7cd0b415d2e5963b229cb3d /src/common/core.h | |
parent | 5b1fee9ef54dbfc27fef5f6125a678fa88eba1be (diff) | |
download | hercules-3b89a135dcde9779bd0537cd136a7c34cfadbe3f.tar.gz hercules-3b89a135dcde9779bd0537cd136a7c34cfadbe3f.tar.bz2 hercules-3b89a135dcde9779bd0537cd136a7c34cfadbe3f.tar.xz hercules-3b89a135dcde9779bd0537cd136a7c34cfadbe3f.zip |
Re-Introducing Console Input
It's back. It's efficient. It's awesome.
http://hercules.ws/board/topic/272-re-introducing-console-input/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/core.h')
-rw-r--r-- | src/common/core.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/common/core.h b/src/common/core.h index ccdfa6c35..dce8157b1 100644 --- a/src/common/core.h +++ b/src/common/core.h @@ -5,6 +5,9 @@ #ifndef _CORE_H_ #define _CORE_H_ +#include "../common/db.h" +#include "../config/core.h" + /* so that developers with --enable-debug can raise signals from any section of the code they'd like */ #ifdef DEBUG #include <signal.h> @@ -13,10 +16,6 @@ extern int arg_c; extern char **arg_v; -#if defined(BUILDBOT) - extern int buildbotflag; -#endif - #define HERC_UNKNOWN_VER '\x02' /// @see E_CORE_ST |