aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_os_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_os_lib.h')
-rw-r--r--src/include/gnunet_os_lib.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index d43711a99..b632ab262 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -276,6 +276,18 @@ struct GNUNET_OS_ProjectData
276 * Non-zero means this project is part of GNU. 276 * Non-zero means this project is part of GNU.
277 */ 277 */
278 int is_gnu; 278 int is_gnu;
279
280 /**
281 * Gettext domain for localisation, e.g. the PACKAGE macro.
282 * Setting this field to NULL disables gettext.
283 */
284 char *gettext_domain;
285
286 /**
287 * Gettext directory, e.g. the LOCALEDIR macro.
288 * If this field is NULL, the path is automatically inferred.
289 */
290 char *gettext_path;
279}; 291};
280 292
281 293