From 31cc98f9208f3e7681bb223a23cd2aed2433c021 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 4 Apr 2016 19:14:27 +0300 Subject: Update plugin for new hercules. --- src/emap/craft.c | 6 +++--- src/emap/craftconf.c | 4 ++-- src/emap/lang.c | 4 ++-- src/emap/map.c | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/emap') diff --git a/src/emap/craft.c b/src/emap/craft.c index 59ebfa0..87310e5 100644 --- a/src/emap/craft.c +++ b/src/emap/craft.c @@ -47,8 +47,8 @@ static void delete_craft_var(struct craft_vardata *craft) } } -static int delete_craftvar_sub(DBKey key __attribute__ ((unused)), - DBData *data, +static int delete_craftvar_sub(union DBKey key __attribute__ ((unused)), + struct DBData *data, va_list args __attribute__ ((unused))) { struct craft_vardata *craft = DB->data2ptr(data); @@ -665,7 +665,7 @@ static int craft_get_recipe(TBL_PC *sd, init_inventory_copy(sd, &local_inventory[0]); - DBIterator* iter = db_iterator(craftconf_db); + struct DBIterator* iter = db_iterator(craftconf_db); for (entry = dbi_first(iter); dbi_exists(iter); entry = dbi_next(iter)) { diff --git a/src/emap/craftconf.c b/src/emap/craftconf.c index f4e52bd..89b31ea 100644 --- a/src/emap/craftconf.c +++ b/src/emap/craftconf.c @@ -422,8 +422,8 @@ static void delete_craft_entry(struct craft_db_entry *entry) VECTOR_CLEAR(entry->create_items); } -static int delete_craftconf_sub(DBKey key __attribute__ ((unused)), - DBData *data, +static int delete_craftconf_sub(union DBKey key __attribute__ ((unused)), + struct DBData *data, va_list args __attribute__ ((unused))) { struct craft_db_entry *craft = DB->data2ptr(data); diff --git a/src/emap/lang.c b/src/emap/lang.c index 2cd838e..9952c3a 100644 --- a/src/emap/lang.c +++ b/src/emap/lang.c @@ -37,8 +37,8 @@ void do_init_langs (void) langsdb_readdb (); } -static int delete_lang_sub(DBKey key __attribute__ ((unused)), - DBData *data, +static int delete_lang_sub(union DBKey key __attribute__ ((unused)), + struct DBData *data, va_list args __attribute__ ((unused))) { int f; diff --git a/src/emap/map.c b/src/emap/map.c index 4392132..428853d 100644 --- a/src/emap/map.c +++ b/src/emap/map.c @@ -122,7 +122,7 @@ void emap_online_list(int fd) const int gpoupLevel = pc_get_group_level(ssd); data1->onlinelistlasttime = t; - DBIterator* iter = db_iterator(map->pc_db); + struct DBIterator* iter = db_iterator(map->pc_db); for (sd = dbi_first(iter); dbi_exists(iter); sd = dbi_next(iter)) { @@ -412,7 +412,7 @@ void emap_iwall_get(struct map_session_data *sd) return; } - DBIterator* iter = db_iterator(map->iwall_db); + struct DBIterator* iter = db_iterator(map->iwall_db); struct WallData *wall; for (wall = dbi_first(iter); dbi_exists(iter); wall = dbi_next(iter)) { -- cgit v1.2.3-70-g09d2