diff options
author | Haru <haru@dotalux.com> | 2018-06-24 20:30:19 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-06-30 01:51:10 +0200 |
commit | 735e2e8340c9522ee5a9afdcad29d191da29c8d4 (patch) | |
tree | 536e52409a69bb46b086cc977dddc7ecc3cf22f7 /src/char/mapif.h | |
parent | bfafa60e80f4a3241177c6d6e8849269b2aea166 (diff) | |
download | hercules-735e2e8340c9522ee5a9afdcad29d191da29c8d4.tar.gz hercules-735e2e8340c9522ee5a9afdcad29d191da29c8d4.tar.bz2 hercules-735e2e8340c9522ee5a9afdcad29d191da29c8d4.tar.xz hercules-735e2e8340c9522ee5a9afdcad29d191da29c8d4.zip |
Move some non-mapif functionality from the mapif interface to the inter_homunculus interface
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/char/mapif.h')
-rw-r--r-- | src/char/mapif.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/char/mapif.h b/src/char/mapif.h index 4f32d8a62..364870567 100644 --- a/src/char/mapif.h +++ b/src/char/mapif.h @@ -97,11 +97,6 @@ struct mapif_interface { void (*homunculus_loaded) (int fd, int account_id, struct s_homunculus *hd); void (*homunculus_saved) (int fd, int account_id, bool flag); void (*homunculus_renamed) (int fd, int account_id, int char_id, unsigned char flag, const char *name); - bool (*homunculus_create) (struct s_homunculus *hd); - bool (*homunculus_save) (const struct s_homunculus *hd); - bool (*homunculus_load) (int homun_id, struct s_homunculus* hd); - bool (*homunculus_delete) (int homun_id); - bool (*homunculus_rename) (const char *name); void (*parse_homunculus_create) (int fd, int len, int account_id, const struct s_homunculus *phd); void (*parse_homunculus_delete) (int fd, int homun_id); void (*parse_homunculus_load) (int fd, int account_id, int homun_id); |