diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-04-20 17:25:49 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-04-21 16:58:24 +0400 |
commit | 49f95221935db33a3636888860f5006070e09dc8 (patch) | |
tree | a370c2025aa361263dbcfa1952ea58ee6f040c3b /include/qemu | |
parent | aa77a877fd033ad62b7072998975f08b340b3952 (diff) | |
download | qemu-49f95221935db33a3636888860f5006070e09dc8.zip qemu-49f95221935db33a3636888860f5006070e09dc8.tar.gz qemu-49f95221935db33a3636888860f5006070e09dc8.tar.bz2 |
include: rename qemu-common.h qemu/help-texts.h
Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Message-Id: <20220420132624.2439741-7-marcandre.lureau@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/help-texts.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/qemu/help-texts.h b/include/qemu/help-texts.h new file mode 100644 index 0000000..ba32cc8 --- /dev/null +++ b/include/qemu/help-texts.h @@ -0,0 +1,13 @@ +#ifndef QEMU_COMMON_H +#define QEMU_COMMON_H + +/* Copyright string for -version arguments, About dialogs, etc */ +#define QEMU_COPYRIGHT "Copyright (c) 2003-2022 " \ + "Fabrice Bellard and the QEMU Project developers" + +/* Bug reporting information for --help arguments, About dialogs, etc */ +#define QEMU_HELP_BOTTOM \ + "See <https://qemu.org/contribute/report-a-bug> for how to report bugs.\n" \ + "More information on the QEMU project at <https://qemu.org>." + +#endif |