summaryrefslogtreecommitdiff
path: root/src/map/storage.h
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-07-10 08:27:03 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-07-10 08:27:03 +0000
commitff07e78eefa511c7ae363a00bf9fbc761240552e (patch)
tree828514051e0a65cdea44369db7f06206bfb48122 /src/map/storage.h
parentdfd9bcd2b9a77ff69d10add1f3b82566b1c87abe (diff)
downloadhercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.tar.gz
hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.tar.bz2
hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.tar.xz
hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.zip
Renamed 'struct storage' to 'struct storage_data' (to make 'storage' available as a variable name).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12932 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/storage.h')
-rw-r--r--src/map/storage.h8
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_ */