X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Foutput-mode.h;h=6a61d31207d8bf79d4158e30024eed7265611388;hp=0efd430c5d71203d9109469e6c977e7c42215dbe;hb=94c5f7fa9e34517edad75cd63d71dd459ec4f133;hpb=9bdbc2e2ec523dbefe1c1c7e164b5544aff0b185 diff --git a/src/shared/output-mode.h b/src/shared/output-mode.h index 0efd430c5..6a61d3120 100644 --- a/src/shared/output-mode.h +++ b/src/shared/output-mode.h @@ -21,8 +21,12 @@ along with systemd; If not, see . ***/ +/// UNNEEDED by elogind +#if 0 typedef enum OutputMode { OUTPUT_SHORT, + OUTPUT_SHORT_ISO, + OUTPUT_SHORT_PRECISE, OUTPUT_SHORT_MONOTONIC, OUTPUT_VERBOSE, OUTPUT_EXPORT, @@ -33,6 +37,7 @@ typedef enum OutputMode { _OUTPUT_MODE_MAX, _OUTPUT_MODE_INVALID = -1 } OutputMode; +#endif // 0 typedef enum OutputFlags { OUTPUT_SHOW_ALL = 1 << 0, @@ -40,5 +45,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;