/* vi: set ts=2: +-------------------+ Christian Schlittchen | | Enno Rehling | Eressea PBEM host | Katja Zedel | (c) 1998 - 2001 | Henning Peters | | Ingo Wilken +-------------------+ Stefan Reich This program may not be used, modified or distributed without prior permission by the authors of Eressea. */ struct locale; struct message; struct message_type; struct nrmessage_type; extern void nrt_register(const struct message_type * mtype, const struct locale * lang, const char * script, int level, const char * section); extern struct nrmessage_type * nrt_find(const struct locale *, const struct message_type *); extern const char * nrt_string(const struct nrmessage_type *type); extern const char * nrt_section(const struct nrmessage_type * mt); extern int nr_render(const struct message * msg, const struct locale * lang, char * buffer, size_t size, const void * userdata); extern int nr_level(const struct message *msg); extern const char * nr_section(const struct message *msg); /* before: * fogblock;movement:0;de;{unit} konnte von {region} nicht nach {$dir direction} ausreisen, der Nebel war zu dicht. * after: * fogblock:movement:0 * $unit($unit) konnte von $region($region) nicht nach $direction($direction) ausreisen, der Nebel war zu dicht. * unit:unit region:region direction:int */