diff options
Diffstat (limited to 'src/map/storage.h')
-rw-r--r-- | src/map/storage.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/storage.h b/src/map/storage.h index 565495a9b..20257471a 100644 --- a/src/map/storage.h +++ b/src/map/storage.h @@ -5,7 +5,7 @@ #define _STORAGE_H_ //#include "../common/mmo.h" -struct storage; +struct storage_data; struct guild_storage; struct item; //#include "map.h" @@ -20,8 +20,8 @@ int storage_storageclose(struct map_session_data *sd); int do_init_storage(void); void do_final_storage(void); void do_reconnect_storage(void); -struct storage* account2storage(int account_id); -struct storage* account2storage2(int account_id); +struct storage_data* account2storage(int account_id); +struct storage_data* account2storage2(int account_id); int storage_storage_quit(struct map_session_data *sd, int flag); int storage_storage_save(int account_id, int final); int storage_storage_saved(int account_id); //Ack from char server that guild store was saved. @@ -43,7 +43,7 @@ int storage_guild_storagesaved(int guild_id); //Ack from char server that guild int storage_comp_item(const void *_i1, const void *_i2); //int storage_comp_item(const struct item* i1, const struct item* i2); -void storage_sortitem(struct storage* stor); +void storage_sortitem(struct storage_data* stor); void storage_gsortitem(struct guild_storage* gstor); #endif /* _STORAGE_H_ */ |