blob: 769324cc07e4f7ba9c0fb364f13d91ec6c70060f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// $Id: inter.h,v 1.1.1.1 2004/09/10 17:26:51 MagicalTux Exp $
#ifndef INTER_HPP
#define INTER_HPP
int inter_init (const char *file);
int inter_save (void);
int inter_parse_frommap (int fd);
int inter_mapif_init (int fd);
int inter_check_length (int fd, int length);
int inter_log (char *fmt, ...);
#define inter_cfgName "conf/inter_athena.conf"
extern int party_share_level;
extern char inter_log_filename[1024];
#endif
|