2010-08-08 10:06:34 +02:00
|
|
|
#ifndef H_UTIL_NRMESSAGE
|
|
|
|
#define H_UTIL_NRMESSAGE
|
2016-11-25 20:15:11 +01:00
|
|
|
|
|
|
|
#include <stddef.h>
|
2018-05-16 21:58:02 +02:00
|
|
|
#include <stdio.h>
|
2016-11-25 20:15:11 +01:00
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
struct locale;
|
|
|
|
struct message;
|
|
|
|
struct message_type;
|
|
|
|
struct nrmessage_type;
|
|
|
|
|
2017-01-23 21:35:01 +01:00
|
|
|
void free_nrmesssages(void);
|
|
|
|
|
2018-05-18 19:58:49 +02:00
|
|
|
void nrt_register(const struct message_type *mtype);
|
2018-05-18 02:46:34 +02:00
|
|
|
const char *nrt_string(const struct message_type *mtype,
|
|
|
|
const struct locale *lang);
|
2015-01-30 20:37:14 +01:00
|
|
|
|
2017-01-23 21:35:01 +01:00
|
|
|
size_t nr_render(const struct message *msg, const struct locale *lang,
|
2015-01-30 20:37:14 +01:00
|
|
|
char *buffer, size_t size, const void *userdata);
|
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|