diff options
Diffstat (limited to 'src/map/buyingstore.h')
-rw-r--r-- | src/map/buyingstore.h | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/map/buyingstore.h b/src/map/buyingstore.h index 52e7a664a..0ed6e5457 100644 --- a/src/map/buyingstore.h +++ b/src/map/buyingstore.h @@ -8,24 +8,26 @@ struct s_search_store_search; #define MAX_BUYINGSTORE_SLOTS 5 -struct s_buyingstore_item { - int price; - unsigned short amount; - unsigned short nameid; +struct s_buyingstore_item +{ + int price; + unsigned short amount; + unsigned short nameid; }; -struct s_buyingstore { - struct s_buyingstore_item items[MAX_BUYINGSTORE_SLOTS]; - int zenylimit; - unsigned char slots; +struct s_buyingstore +{ + struct s_buyingstore_item items[MAX_BUYINGSTORE_SLOTS]; + int zenylimit; + unsigned char slots; }; -bool buyingstore_setup(struct map_session_data *sd, unsigned char slots); -void buyingstore_create(struct map_session_data *sd, int zenylimit, unsigned char result, const char *storename, const uint8 *itemlist, unsigned int count); -void buyingstore_close(struct map_session_data *sd); -void buyingstore_open(struct map_session_data *sd, int account_id); -void buyingstore_trade(struct map_session_data *sd, int account_id, unsigned int buyer_id, const uint8 *itemlist, unsigned int count); -bool buyingstore_search(struct map_session_data *sd, unsigned short nameid); -bool buyingstore_searchall(struct map_session_data *sd, const struct s_search_store_search *s); +bool buyingstore_setup(struct map_session_data* sd, unsigned char slots); +void buyingstore_create(struct map_session_data* sd, int zenylimit, unsigned char result, const char* storename, const uint8* itemlist, unsigned int count); +void buyingstore_close(struct map_session_data* sd); +void buyingstore_open(struct map_session_data* sd, int account_id); +void buyingstore_trade(struct map_session_data* sd, int account_id, unsigned int buyer_id, const uint8* itemlist, unsigned int count); +bool buyingstore_search(struct map_session_data* sd, unsigned short nameid); +bool buyingstore_searchall(struct map_session_data* sd, const struct s_search_store_search* s); #endif // _BUYINGSTORE_H_ |