diff options
author | Haru <haru@dotalux.com> | 2016-02-16 20:28:18 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-17 10:40:45 +0100 |
commit | 1d2eb6d23519a971db0646a146152fc6f79350f1 (patch) | |
tree | 47d24a43925e95aea6acb8ff321cb9543600fda4 /src/map/quest.h | |
parent | 10908446738f6e425de6e8fa50e8f91eb30c0478 (diff) | |
download | hercules-1d2eb6d23519a971db0646a146152fc6f79350f1.tar.gz hercules-1d2eb6d23519a971db0646a146152fc6f79350f1.tar.bz2 hercules-1d2eb6d23519a971db0646a146152fc6f79350f1.tar.xz hercules-1d2eb6d23519a971db0646a146152fc6f79350f1.zip |
Replaced some now unnecessary includes with forward declarations in header files
Added some forgotten <stdio.h> and "common/conf.h" includes to .c files,
that were previously masked by the above.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/quest.h')
-rw-r--r-- | src/map/quest.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/quest.h b/src/map/quest.h index a4d778219..e0768ef40 100644 --- a/src/map/quest.h +++ b/src/map/quest.h @@ -22,10 +22,11 @@ #define MAP_QUEST_H #include "common/hercules.h" -#include "common/conf.h" #include "common/mmo.h" // enum quest_state +/* Forward Declarations */ struct block_list; +struct config_setting_t; struct map_session_data; #define MAX_QUEST_DB (60355+1) // Highest quest ID + 1 |