summaryrefslogtreecommitdiff
path: root/src/map/storage.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2012-12-12 22:36:08 -0800
committerBen Longbons <b.r.longbons@gmail.com>2012-12-12 22:36:08 -0800
commit608f959900968e83fd25231c72308fc608742dd5 (patch)
tree33a250f00947d7c83ba50779da466b5f5885db9f /src/map/storage.hpp
parentd8e5c96fbbed5d526dd77d2e427bcb3090bddd58 (diff)
downloadtmwa-608f959900968e83fd25231c72308fc608742dd5.tar.gz
tmwa-608f959900968e83fd25231c72308fc608742dd5.tar.bz2
tmwa-608f959900968e83fd25231c72308fc608742dd5.tar.xz
tmwa-608f959900968e83fd25231c72308fc608742dd5.zip
Remove guilds, finally
If anyone in the future wonders why I did this, just look at how many lines of code this eliminates.
Diffstat (limited to 'src/map/storage.hpp')
-rw-r--r--src/map/storage.hpp24
1 files changed, 1 insertions, 23 deletions
diff --git a/src/map/storage.hpp b/src/map/storage.hpp
index 22625df..29702a6 100644
--- a/src/map/storage.hpp
+++ b/src/map/storage.hpp
@@ -22,33 +22,11 @@ struct storage *account2storage2 (int account_id);
int storage_delete (int account_id);
int storage_storage_quit (struct map_session_data *sd);
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.
+int storage_storage_saved (int account_id);
void storage_storage_dirty (struct map_session_data *sd);
-struct guild_storage *guild2storage (int guild_id);
-int guild_storage_delete (int guild_id);
-int storage_guild_storageopen (struct map_session_data *sd);
-int guild_storage_additem (struct map_session_data *sd,
- struct guild_storage *stor,
- struct item *item_data, int amount);
-int guild_storage_delitem (struct map_session_data *sd,
- struct guild_storage *stor, int n, int amount);
-int storage_guild_storageadd (struct map_session_data *sd, int index,
- int amount);
-int storage_guild_storageget (struct map_session_data *sd, int index,
- int amount);
-int storage_guild_storageaddfromcart (struct map_session_data *sd, int index,
- int amount);
-int storage_guild_storagegettocart (struct map_session_data *sd, int index,
- int amount);
-int storage_guild_storageclose (struct map_session_data *sd);
-int storage_guild_storage_quit (struct map_session_data *sd, int flag);
-int storage_guild_storagesave (int account_id, int guild_id, int flag);
-int storage_guild_storagesaved (int guild_id); //Ack from char server that guild store was saved.
-
int storage_comp_item (const void *_i1, const void *_i2);
//int storage_comp_item(const struct item* i1, const struct item* i2);
void sortage_sortitem (struct storage *stor);
-void sortage_gsortitem (struct guild_storage *gstor);
#endif