root/src/char/int_guild.h @ 9

Revision 1, 0.8 kB (checked in by jinshiro, 17 years ago)
Line 
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
7struct guild;
8struct guild_castle;
9
10int inter_guild_init(void);
11void inter_guild_final(void);
12int inter_guild_save(void);
13int inter_guild_parse_frommap(int fd);
14struct guild *inter_guild_search(int guild_id);
15int inter_guild_mapif_init(int fd);
16int inter_guild_leave(int guild_id,int account_id,int char_id);
17int inter_guild_sex_changed(int guild_id,int account_id,int char_id, int gender);
18
19extern char guild_txt[1024];
20extern char castle_txt[1024];
21
22//For the TXT->SQL converter
23int inter_guild_fromstr(char *str, struct guild *g);
24int inter_guildcastle_fromstr(char *str, struct guild_castle *gc);
25
26#endif /* _INT_GUILD_H_ */
Note: See TracBrowser for help on using the browser.