diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-11 16:11:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-11 16:11:38 -0300 |
commit | ab38f2c2435bd0923db3c434841b2a6440313a41 (patch) | |
tree | 1c50f83f2457acd1e4e7f6fb001c84f07d76d59c | |
parent | cf5dae27bd6227877e72cb68f4e360be2bc28094 (diff) | |
download | evol-hercules-ab38f2c2435bd0923db3c434841b2a6440313a41.tar.gz evol-hercules-ab38f2c2435bd0923db3c434841b2a6440313a41.tar.bz2 evol-hercules-ab38f2c2435bd0923db3c434841b2a6440313a41.tar.xz evol-hercules-ab38f2c2435bd0923db3c434841b2a6440313a41.zip |
Revert "Fix redefine HPM interfaces"
This reverts commit c687d2d1b2ad48b5b15899f34b73a41ae73f674c.
-rw-r--r-- | src/Makefile.am | 1 | ||||
-rw-r--r-- | src/echar/init.c | 3 | ||||
-rw-r--r-- | src/ecommon/init.c | 5 | ||||
-rw-r--r-- | src/elogin/init.c | 3 | ||||
-rw-r--r-- | src/emap/init.c | 3 |
5 files changed, 0 insertions, 15 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index cf864f1..8c9a8d5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -138,7 +138,6 @@ MAP_SRC = emap/atcommand.c \ SHARED_CFLAGS = ${CFLAGS} -O3 -pipe -ffast-math -std=c11 -Wall -Wextra -Wno-sign-compare -Wno-unused -fno-omit-frame-pointer \ -DPCRE_SUPPORT -I../../.. -I../../../../3rdparty \ - -DHERCULES_CORE_HPMI_SKIP \ -DPACKETVER=20170517 \ -DevolPacketOffset=0x100 SHARED_LDFLAGS = -lm -avoid-version -Wl,--no-undefined diff --git a/src/echar/init.c b/src/echar/init.c index e273b58..d42542c 100644 --- a/src/echar/init.c +++ b/src/echar/init.c @@ -39,9 +39,6 @@ #include "echar/config.h" #include "plugins/HPMHooking.h" - -HPExport struct HPMHooking_interface HPMHooking_s; - #include "common/HPMDataCheck.h" /* should always be the last file included! (if you don't make it last, it'll intentionally break compile time) */ HPExport struct hplugin_info pinfo = diff --git a/src/ecommon/init.c b/src/ecommon/init.c index 664522c..075f86a 100644 --- a/src/ecommon/init.c +++ b/src/ecommon/init.c @@ -8,11 +8,6 @@ #include <string.h> #include "common/HPMi.h" - -HPExport struct HPMi_interface HPMi_s; -HPExport struct HPMi_interface *HPMi; -HPExport void *(*import_symbol) (char *name, unsigned int pID); - #include "common/conf.h" #include "common/memmgr.h" #include "common/mapindex.h" diff --git a/src/elogin/init.c b/src/elogin/init.c index 88f322c..52a95bf 100644 --- a/src/elogin/init.c +++ b/src/elogin/init.c @@ -25,9 +25,6 @@ #include "elogin/parse.h" #include "plugins/HPMHooking.h" - -HPExport struct HPMHooking_interface HPMHooking_s; - #include "common/HPMDataCheck.h" /* should always be the last file included! (if you don't make it last, it'll intentionally break compile time) */ HPExport struct hplugin_info pinfo = diff --git a/src/emap/init.c b/src/emap/init.c index c59185b..8838aab 100644 --- a/src/emap/init.c +++ b/src/emap/init.c @@ -80,9 +80,6 @@ #include "emap/data/skilld.h" #include "plugins/HPMHooking.h" - -HPExport struct HPMHooking_interface HPMHooking_s; - #include "common/HPMDataCheck.h" /* should always be the last file included! (if you don't make it last, it'll intentionally break compile time) */ extern int langScriptId; |