Revision 1, 0.6 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 _INT_MAIL_SQL_H_ |
---|
5 | #define _INT_MAIL_SQL_H_ |
---|
6 | |
---|
7 | int inter_mail_parse_frommap(int fd); |
---|
8 | void mail_sendmail(int send_id, const char* send_name, int dest_id, const char* dest_name, const char* title, const char* body, int zeny, struct item *item); |
---|
9 | |
---|
10 | int inter_mail_sql_init(void); |
---|
11 | void inter_mail_sql_final(void); |
---|
12 | |
---|
13 | int mail_savemessage(struct mail_message* msg); |
---|
14 | void mapif_Mail_new(struct mail_message *msg); |
---|
15 | |
---|
16 | #endif /* _INT_MAIL_SQL_H_ */ |
---|