Revision 1, 0.8 kB
(checked in by jinshiro, 17 years ago)
|
|
Line | |
---|
1 | // Copyright (c) Athena Dev Teams - Licensed under GNU GPL |
---|
2 | // For more information, see LICENCE in the main folder |
---|
3 | |
---|
4 | #ifndef _MAIL_H_ |
---|
5 | #define _MAIL_H_ |
---|
6 | |
---|
7 | #include "../common/mmo.h" |
---|
8 | |
---|
9 | void mail_clear(struct map_session_data *sd); |
---|
10 | int mail_removeitem(struct map_session_data *sd, short flag); |
---|
11 | int mail_removezeny(struct map_session_data *sd, short flag); |
---|
12 | unsigned char mail_setitem(struct map_session_data *sd, int idx, int amount); |
---|
13 | bool mail_setattachment(struct map_session_data *sd, struct mail_message *msg); |
---|
14 | void mail_getattachment(struct map_session_data* sd, int zeny, struct item* item); |
---|
15 | int mail_openmail(struct map_session_data *sd); |
---|
16 | void mail_deliveryfail(struct map_session_data *sd, struct mail_message *msg); |
---|
17 | bool mail_invalid_operation(struct map_session_data *sd); |
---|
18 | |
---|
19 | #endif /* _MAIL_H_ */ |
---|