diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-10 08:27:03 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-10 08:27:03 +0000 |
commit | ff07e78eefa511c7ae363a00bf9fbc761240552e (patch) | |
tree | 828514051e0a65cdea44369db7f06206bfb48122 /src/map/clif.h | |
parent | dfd9bcd2b9a77ff69d10add1f3b82566b1c87abe (diff) | |
download | hercules-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/clif.h')
-rw-r--r-- | src/map/clif.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 4cf738ec9..500c385af 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -6,7 +6,7 @@ #include "../common/cbasetypes.h" //#include "../common/mmo.h" -struct storage; +struct storage_data; struct guild_storage; //#include "map.h" struct block_list; @@ -192,9 +192,9 @@ void clif_tradecompleted(struct map_session_data* sd, int fail); // storage #include "storage.h" -void clif_storagelist(struct map_session_data *sd,struct storage *stor); -int clif_updatestorageamount(struct map_session_data *sd,struct storage *stor); -int clif_storageitemadded(struct map_session_data *sd,struct storage *stor,int index,int amount); +void clif_storagelist(struct map_session_data *sd,struct storage_data *stor); +int clif_updatestorageamount(struct map_session_data *sd,struct storage_data *stor); +int clif_storageitemadded(struct map_session_data *sd,struct storage_data *stor,int index,int amount); int clif_storageitemremoved(struct map_session_data *sd,int index,int amount); int clif_storageclose(struct map_session_data *sd); void clif_guildstoragelist(struct map_session_data *sd,struct guild_storage *stor); |