mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
24 lines
260 B
C
24 lines
260 B
C
#ifndef __GETTEXT_HEADER_
|
|
#define __GETTEXT_HEADER_
|
|
|
|
|
|
#ifdef WIN32
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
static inline const char *gettext (const char *__msgid)
|
|
{
|
|
return __msgid;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#else
|
|
#include <libintl.h>
|
|
#endif
|
|
|
|
|
|
#endif |