blob: 2833e2d625d6dcc34b83b3ff7cd732c83e930b67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// $Id: int_guild.h,v 1.1.1.1 2004/09/10 17:26:51 MagicalTux Exp $
#ifndef INT_GUILD_HPP
#define INT_GUILD_HPP
int inter_guild_init (void);
int inter_guild_save (void);
int inter_guild_parse_frommap (int fd);
struct guild *inter_guild_search (int guild_id);
int inter_guild_mapif_init (int fd);
int inter_guild_leave (int guild_id, int account_id, int char_id);
extern char guild_txt[1024];
extern char castle_txt[1024];
#endif
|