
- Removed a bunch of unused stuff - Moved SIGILL to unix-only defines since tests and docs show that Windows doesn't issue SIGILL - Fixed several annoying compilation warnings git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10177 54d463be-8e91-2dee-dedb-b68131a5f0ec
24 lines
573 B
C
24 lines
573 B
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _CORE_H_
|
|
#define _CORE_H_
|
|
|
|
//#define SQL_DEBUG //uncomment for debug_mysql_query instead of mysql_real_query
|
|
|
|
extern int arg_c;
|
|
extern char **arg_v;
|
|
|
|
extern int runflag;
|
|
extern char *SERVER_NAME;
|
|
extern char SERVER_TYPE;
|
|
|
|
extern int parse_console(char* buf);
|
|
extern const char *get_svn_revision(void);
|
|
extern int do_init(int,char**);
|
|
extern void set_server_type(void);
|
|
extern void do_abort(void);
|
|
extern void do_final(void);
|
|
|
|
#endif /* _CORE_H_ */
|