chiark / gitweb /
Prep v229: Add include for parse-printf-format.h to src/basic/stdio-util.h
[elogind.git] / src / shared / output-mode.h
index 9da789db762632a3aa6cf50858c50d65d15ad8e2..f01297c77d7a9a56c3450375071df72e11b99a96 100644 (file)
@@ -1,5 +1,3 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
 #pragma once
 
 /***
@@ -21,6 +19,7 @@
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
+#if 0 /// UNNEEDED by elogind
 typedef enum OutputMode {
         OUTPUT_SHORT,
         OUTPUT_SHORT_ISO,
@@ -35,6 +34,7 @@ typedef enum OutputMode {
         _OUTPUT_MODE_MAX,
         _OUTPUT_MODE_INVALID = -1
 } OutputMode;
+#endif // 0
 
 typedef enum OutputFlags {
         OUTPUT_SHOW_ALL       = 1 << 0,
@@ -42,5 +42,7 @@ typedef enum OutputFlags {
         OUTPUT_WARN_CUTOFF    = 1 << 2,
         OUTPUT_FULL_WIDTH     = 1 << 3,
         OUTPUT_COLOR          = 1 << 4,
-        OUTPUT_CATALOG        = 1 << 5
+        OUTPUT_CATALOG        = 1 << 5,
+        OUTPUT_BEGIN_NEWLINE  = 1 << 6,
+        OUTPUT_UTC            = 1 << 7,
 } OutputFlags;