diff options
author | Haru <haru@dotalux.com> | 2015-06-19 15:14:10 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-06-19 15:14:44 +0200 |
commit | f444c3d53ba473641a8f21601784f83f84cc5ea2 (patch) | |
tree | 0605d01f777b6463a972e27eced92b6ebbbe86ea /src/login | |
parent | 21c9aae7458fe88394c20d07d4eb940b4e07351f (diff) | |
download | hercules-f444c3d53ba473641a8f21601784f83f84cc5ea2.tar.gz hercules-f444c3d53ba473641a8f21601784f83f84cc5ea2.tar.bz2 hercules-f444c3d53ba473641a8f21601784f83f84cc5ea2.tar.xz hercules-f444c3d53ba473641a8f21601784f83f84cc5ea2.zip |
Cleaned up HPMDataCheck includes
Fixes some plugin load failures
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/HPMlogin.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/login/HPMlogin.c b/src/login/HPMlogin.c index 0a7729da8..129f88c38 100644 --- a/src/login/HPMlogin.c +++ b/src/login/HPMlogin.c @@ -9,16 +9,28 @@ #include "common/cbasetypes.h" #if 0 // TODO (HPMDataCheck is disabled for the time being) +#include "login/account.h" +#include "login/login.h" +#include "common/HPMi.h" #include "common/conf.h" +#include "common/console.h" +#include "common/core.h" #include "common/db.h" #include "common/des.h" #include "common/ers.h" -#include "common/mapindex.h" +#include "common/malloc.h" #include "common/mmo.h" +#include "common/nullpo.h" +#include "common/showmsg.h" #include "common/socket.h" +#include "common/spinlock.h" +#include "common/sql.h" #include "common/strlib.h" #include "common/sysinfo.h" -#include "login/login.h" +#include "common/timer.h" +#include "common/utils.h" + +// HPMDataCheck comes after all the other includes #include "common/HPMDataCheck.h" #endif |