diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/console.c | 11 | ||||
-rw-r--r-- | src/common/console.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/common/console.c b/src/common/console.c index 477141b48..cc0e920c4 100644 --- a/src/common/console.c +++ b/src/common/console.c @@ -75,6 +75,16 @@ void display_title(void) { ShowInfo("Compiled with %s\n", sysinfo->compiler()); ShowInfo("Compile Flags: %s\n", sysinfo->cflags()); } + +/** + * Shows a license notice as per GNU GPL recommendation. + */ +void display_gplnotice(void) +{ + ShowInfo("Hercules, Copyright (C) 2012-2015, Hercules Dev Team and others.\n"); + ShowInfo("Licensed under the GNU General Public License, version 3 or later.\n"); +} + #ifdef CONSOLE_INPUT int console_parse_key_pressed(void) { @@ -532,6 +542,7 @@ void console_defaults(void) console->init = console_init; console->final = console_final; console->display_title = display_title; + console->display_gplnotice = display_gplnotice; #ifdef CONSOLE_INPUT console->input = &console_input_s; console->input->parse_init = console_parse_init; diff --git a/src/common/console.h b/src/common/console.h index 102a1beaf..676747465 100644 --- a/src/common/console.h +++ b/src/common/console.h @@ -84,6 +84,7 @@ struct console_interface { void (*init) (void); void (*final) (void); void (*display_title) (void); + void (*display_gplnotice) (void); struct console_input_interface *input; }; |