Revision 1, 0.8 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_GUILD_H_ |
---|
| 5 | #define _INT_GUILD_H_ |
---|
| 6 | |
---|
| 7 | struct guild; |
---|
| 8 | struct guild_castle; |
---|
| 9 | |
---|
| 10 | int inter_guild_init(void); |
---|
| 11 | void inter_guild_final(void); |
---|
| 12 | int inter_guild_save(void); |
---|
| 13 | int inter_guild_parse_frommap(int fd); |
---|
| 14 | struct guild *inter_guild_search(int guild_id); |
---|
| 15 | int inter_guild_mapif_init(int fd); |
---|
| 16 | int inter_guild_leave(int guild_id,int account_id,int char_id); |
---|
| 17 | int inter_guild_sex_changed(int guild_id,int account_id,int char_id, int gender); |
---|
| 18 | |
---|
| 19 | extern char guild_txt[1024]; |
---|
| 20 | extern char castle_txt[1024]; |
---|
| 21 | |
---|
| 22 | //For the TXT->SQL converter |
---|
| 23 | int inter_guild_fromstr(char *str, struct guild *g); |
---|
| 24 | int inter_guildcastle_fromstr(char *str, struct guild_castle *gc); |
---|
| 25 | |
---|
| 26 | #endif /* _INT_GUILD_H_ */ |
---|