server/src/util/nrmessage_struct.h
Enno Rehling c0692986b2 make runtests.bat not crash.
disable auto-load of config.lua (sob).
free messages and config in config.reset().
2017-01-26 18:06:48 +01:00

20 lines
505 B
C

#ifndef CLASS_NRMESSAGE_STRUCT
#define CLASS_NRMESSAGE_STRUCT
/* This file should not be included by anything in the server. If you
* feel that you need to include it, it's a sure sign that you're trying to
* do something BAD. */
typedef struct nrmessage_type {
const struct message_type *mtype;
const struct locale *lang;
char *string;
char *vars;
struct nrmessage_type *next;
int level;
const char *section;
} nrmessage_type;
extern nrmessage_type *get_nrmessagetypes(void);
#endif