int_mercenary.hpp 631 B

123456789101112131415161718192021
  1. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef INT_MERCENARY_HPP
  4. #define INT_MERCENARY_HPP
  5. #include <common/cbasetypes.hpp>
  6. int32 inter_mercenary_sql_init(void);
  7. void inter_mercenary_sql_final(void);
  8. int32 inter_mercenary_parse_frommap(int32 fd);
  9. // Mercenary Owner Database
  10. bool mercenary_owner_fromsql(uint32 char_id, struct mmo_charstatus *status);
  11. bool mercenary_owner_tosql(uint32 char_id, struct mmo_charstatus *status);
  12. bool mercenary_owner_delete(uint32 char_id);
  13. bool mapif_mercenary_delete(int32 merc_id);
  14. #endif /* INT_MERCENARY_HPP */