summaryrefslogtreecommitdiff
path: root/Build/source/texk/gregorio/gregorio-4.0.0-beta2/src/messages.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/gregorio/gregorio-4.0.0-beta2/src/messages.h')
-rw-r--r--Build/source/texk/gregorio/gregorio-4.0.0-beta2/src/messages.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/Build/source/texk/gregorio/gregorio-4.0.0-beta2/src/messages.h b/Build/source/texk/gregorio/gregorio-4.0.0-beta2/src/messages.h
new file mode 100644
index 00000000000..fc25c143767
--- /dev/null
+++ b/Build/source/texk/gregorio/gregorio-4.0.0-beta2/src/messages.h
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2009-2015 The Gregorio Project (see CONTRIBUTORS.md)
+ *
+ * This file is part of Gregorio.
+ *
+ * Gregorio is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Gregorio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Gregorio. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MESSAGES_H
+#define MESSAGES_H
+
+#ifndef ENABLE_NLS
+#define ENABLE_NLS 0
+#endif
+#if ENABLE_NLS == 1
+#include "gettext.h"
+#define _(str) gettext(str)
+#define N_(str) str
+#define ngt_(str, strtwo, count) ngettext(str, strtwo, count)
+#else
+#define _(str) str
+#define N_(str) str
+#define ngt_(str, strtwo, count) str
+#endif
+
+typedef enum gregorio_verbosity {
+ VERBOSITY_INFO = 1,
+ VERBOSITY_WARNING,
+ VERBOSITY_DEPRECATION,
+ VERBOSITY_ERROR,
+ VERBOSITY_FATAL
+} gregorio_verbosity;
+
+void gregorio_message(const char *string, const char *function_name,
+ gregorio_verbosity verbosity, int line_number);
+void gregorio_messagef(const char *function_name,
+ gregorio_verbosity verbosity,
+ int line_number, const char *format, ...)
+ __attribute__ ((__format__ (__printf__, 4, 5)));
+void gregorio_set_verbosity_mode(gregorio_verbosity verbosity);
+void gregorio_set_file_name(const char *new_name);
+void gregorio_set_error_out(FILE *f);
+int gregorio_get_return_value(void);
+
+#endif