diff options
Diffstat (limited to 'console/display.h')
-rw-r--r-- | console/display.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/console/display.h b/console/display.h index 303c42e2..4f9b7586 100644 --- a/console/display.h +++ b/console/display.h @@ -29,8 +29,9 @@ typedef struct display *display_t; void display_init (void); /* Create a new virtual console display, with the system encoding - being ENCODING. */ -error_t display_create (display_t *r_display, const char *encoding); + being ENCODING and the default colors being FOREGROUND and BACKGROUND. */ +error_t display_create (display_t *r_display, const char *encoding, + int foreground, int background); /* Destroy the display DISPLAY. */ void display_destroy (display_t display); |