root/src/char/inter.h @ 18

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 _INTER_H_
5#define _INTER_H_
6
7struct accreg;
8
9int inter_init_txt(const char *file);
10void inter_final(void);
11int inter_save(void);
12int inter_parse_frommap(int fd);
13int inter_mapif_init(int fd);
14int mapif_disconnectplayer(int fd, int account_id, int char_id, int reason);
15
16int inter_check_length(int fd,int length);
17
18int inter_log(char *fmt,...);
19
20#define inter_cfgName "conf/inter_athena.conf"
21
22extern unsigned int party_share_level;
23extern char inter_log_filename[1024];
24extern char main_chat_nick[16];
25
26//For TXT->SQL conversion
27extern char accreg_txt[];
28int inter_accreg_fromstr(const char *str, struct accreg *reg);
29
30#endif /* _INTER_H_ */
Note: See TracBrowser for help on using the browser.