summaryrefslogtreecommitdiff
path: root/include/slibtool/slibtool.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/slibtool/slibtool.h')
-rw-r--r--include/slibtool/slibtool.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h
index 7f48fdd..edc24e5 100644
--- a/include/slibtool/slibtool.h
+++ b/include/slibtool/slibtool.h
@@ -57,6 +57,13 @@ enum slbt_tag {
SLBT_TAG_CXX,
};
+enum slbt_warning_level {
+ SLBT_WARNING_LEVEL_UNKNOWN,
+ SLBT_WARNING_LEVEL_ALL,
+ SLBT_WARNING_LEVEL_ERROR,
+ SLBT_WARNING_LEVEL_NONE,
+};
+
/* unit action flags */
struct slbt_input {
@@ -70,6 +77,7 @@ struct slbt_common_ctx {
uint64_t fmtflags;
enum slbt_mode mode;
enum slbt_tag tag;
+ enum slbt_warning_level warnings;
};
struct slbt_driver_ctx {