Revision 1, 0.6 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_HOMUN_SQL_H_ |
---|
| 5 | #define _INT_HOMUN_SQL_H_ |
---|
| 6 | |
---|
| 7 | struct s_homunculus; |
---|
| 8 | |
---|
| 9 | int inter_homunculus_sql_init(void); |
---|
| 10 | void inter_homunculus_sql_final(void); |
---|
| 11 | int inter_homunculus_parse_frommap(int fd); |
---|
| 12 | |
---|
| 13 | bool mapif_homunculus_save(struct s_homunculus* hd); |
---|
| 14 | bool mapif_homunculus_load(int homun_id, struct s_homunculus* hd); |
---|
| 15 | bool mapif_homunculus_delete(int homun_id); |
---|
| 16 | bool mapif_homunculus_rename(char *name); |
---|
| 17 | |
---|
| 18 | #endif /* _INT_HOMUN_SQL_H_ */ |
---|