diff options
Diffstat (limited to 'src/char/int_quest.h')
-rw-r--r-- | src/char/int_quest.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/char/int_quest.h b/src/char/int_quest.h index 2cb359d40..442995826 100644 --- a/src/char/int_quest.h +++ b/src/char/int_quest.h @@ -1,12 +1,10 @@ // Copyright (c) Athena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder -#ifndef CHAR_QUEST_H -#define CHAR_QUEST_H +#ifndef CHAR_INT_QUEST_H +#define CHAR_INT_QUEST_H -#ifdef HERCULES_CORE -void inter_quest_defaults(void); -#endif // HERCULES_CORE +#include "common/hercules.h" /** * inter_quest interface @@ -15,7 +13,10 @@ struct inter_quest_interface { int (*parse_frommap) (int fd); }; -struct inter_quest_interface *inter_quest; +#ifdef HERCULES_CORE +void inter_quest_defaults(void); +#endif // HERCULES_CORE -#endif /* CHAR_QUEST_H */ +HPShared struct inter_quest_interface *inter_quest; +#endif /* CHAR_INT_QUEST_H */ |