]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/output-mode.h
man: document ARM root partition types
[thirdparty/systemd.git] / src / shared / output-mode.h
CommitLineData
9bdbc2e2
LN
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2013 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24typedef enum OutputMode {
25 OUTPUT_SHORT,
44bc6e1f 26 OUTPUT_SHORT_ISO,
f02d8367
ZJS
27 OUTPUT_SHORT_PRECISE,
28 OUTPUT_SHORT_MONOTONIC,
9bdbc2e2
LN
29 OUTPUT_VERBOSE,
30 OUTPUT_EXPORT,
31 OUTPUT_JSON,
32 OUTPUT_JSON_PRETTY,
33 OUTPUT_JSON_SSE,
34 OUTPUT_CAT,
35 _OUTPUT_MODE_MAX,
36 _OUTPUT_MODE_INVALID = -1
37} OutputMode;
38
39typedef enum OutputFlags {
40 OUTPUT_SHOW_ALL = 1 << 0,
41 OUTPUT_FOLLOW = 1 << 1,
42 OUTPUT_WARN_CUTOFF = 1 << 2,
43 OUTPUT_FULL_WIDTH = 1 << 3,
44 OUTPUT_COLOR = 1 << 4,
ea6c2dd1
LP
45 OUTPUT_CATALOG = 1 << 5,
46 OUTPUT_BEGIN_NEWLINE = 1 << 6,
9bdbc2e2 47} OutputFlags;