Revision 1, 0.5 kB
(checked in by jinshiro, 17 years ago)
|
|
Rev | Line | |
---|
[1] | 1 | // Copyright (c) Athena Dev Teams - Licensed under GNU GPL |
---|
| 2 | // For more information, see LICENCE in the main folder |
---|
| 3 | |
---|
| 4 | #ifndef _INT_PET_SQL_H_ |
---|
| 5 | #define _INT_PET_SQL_H_ |
---|
| 6 | |
---|
| 7 | struct s_pet; |
---|
| 8 | |
---|
| 9 | int inter_pet_init(void); |
---|
| 10 | void inter_pet_sql_final(void); |
---|
| 11 | int inter_pet_save(void); |
---|
| 12 | int inter_pet_delete(int pet_id); |
---|
| 13 | |
---|
| 14 | int inter_pet_parse_frommap(int fd); |
---|
| 15 | int inter_pet_sql_init(void); |
---|
| 16 | //extern char pet_txt[256]; |
---|
| 17 | |
---|
| 18 | //Exported for use in the TXT-SQL converter. |
---|
| 19 | int inter_pet_tosql(int pet_id, struct s_pet *p); |
---|
| 20 | |
---|
| 21 | #endif /* _INT_PET_SQL_H_ */ |
---|