int_mail.hpp 777 B

1234567891011121314151617181920212223242526
  1. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _INT_MAIL_HPP_
  4. #define _INT_MAIL_HPP_
  5. #include "../common/cbasetypes.hpp"
  6. struct mail_message;
  7. int mail_return_timer( int tid, unsigned int tick, int id, intptr_t data );
  8. int mail_delete_timer( int tid, unsigned int tick, int id, intptr_t data );
  9. int inter_mail_parse_frommap(int fd);
  10. bool 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, int amount);
  11. int inter_mail_sql_init(void);
  12. void inter_mail_sql_final(void);
  13. int mail_savemessage(struct mail_message* msg);
  14. void mapif_Mail_new(struct mail_message *msg);
  15. #endif /* _INT_MAIL_HPP_ */