1 #ifndef QEMU_HELP_TEXTS_H 2 #define QEMU_HELP_TEXTS_H 3 4 /* Copyright string for -version arguments, About dialogs, etc */ 5 #define QEMU_COPYRIGHT "Copyright (c) 2003-2024 " \ 6 "Fabrice Bellard and the QEMU Project developers" 7 8 /* Bug reporting information for --help arguments, About dialogs, etc */ 9 #define QEMU_HELP_BOTTOM \ 10 "See <https://qemu.org/contribute/report-a-bug> for how to report bugs.\n" \ 11 "More information on the QEMU project at <https://qemu.org>." 12 13 #endif 14