diff options
Diffstat (limited to 'src/char/int_auction.h')
-rw-r--r-- | src/char/int_auction.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/char/int_auction.h b/src/char/int_auction.h index c27ecd6c3..37fd48264 100644 --- a/src/char/int_auction.h +++ b/src/char/int_auction.h @@ -4,11 +4,9 @@ #ifndef CHAR_INT_AUCTION_H #define CHAR_INT_AUCTION_H -#include "../common/mmo.h" - -#ifdef HERCULES_CORE -void inter_auction_defaults(void); -#endif // HERCULES_CORE +#include "common/hercules.h" +#include "common/db.h" +#include "common/mmo.h" /** * inter_auction_interface interface @@ -26,6 +24,10 @@ struct inter_auction_interface { void (*sql_final) (void); }; -struct inter_auction_interface *inter_auction; +#ifdef HERCULES_CORE +void inter_auction_defaults(void); +#endif // HERCULES_CORE + +HPShared struct inter_auction_interface *inter_auction; #endif /* CHAR_INT_AUCTION_H */ |