summaryrefslogtreecommitdiff
path: root/src/map/storage.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2012-12-13 16:25:50 -0800
committerBen Longbons <b.r.longbons@gmail.com>2012-12-14 16:18:22 -0800
commit069f39e8a1ebee3e4a4ce8302d0099842876782b (patch)
tree57d8de5f57d65878f8ef560e2884b9dee08e9323 /src/map/storage.hpp
parentf9563edf69f083287630f4b17db70d97524196d6 (diff)
downloadtmwa-069f39e8a1ebee3e4a4ce8302d0099842876782b.tar.gz
tmwa-069f39e8a1ebee3e4a4ce8302d0099842876782b.tar.bz2
tmwa-069f39e8a1ebee3e4a4ce8302d0099842876782b.tar.xz
tmwa-069f39e8a1ebee3e4a4ce8302d0099842876782b.zip
Some formatting fixes before I go insane
Also delete the French translation from ladmin.
Diffstat (limited to 'src/map/storage.hpp')
-rw-r--r--src/map/storage.hpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/map/storage.hpp b/src/map/storage.hpp
index 29702a6..171a21b 100644
--- a/src/map/storage.hpp
+++ b/src/map/storage.hpp
@@ -6,27 +6,27 @@
#include "../common/mmo.hpp"
-int storage_storageopen (struct map_session_data *sd);
-int storage_storageadd (struct map_session_data *sd, int index, int amount);
-int storage_storageget (struct map_session_data *sd, int index, int amount);
-int storage_storageaddfromcart (struct map_session_data *sd, int index,
+int storage_storageopen(struct map_session_data *sd);
+int storage_storageadd(struct map_session_data *sd, int index, int amount);
+int storage_storageget(struct map_session_data *sd, int index, int amount);
+int storage_storageaddfromcart(struct map_session_data *sd, int index,
int amount);
-int storage_storagegettocart (struct map_session_data *sd, int index,
+int storage_storagegettocart(struct map_session_data *sd, int index,
int amount);
-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);
-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);
-void storage_storage_dirty (struct map_session_data *sd);
+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);
+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);
+void storage_storage_dirty(struct map_session_data *sd);
-int storage_comp_item (const void *_i1, const void *_i2);
+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_sortitem(struct storage *stor);
#endif