diff options
| author | Peter Jones <pjones@redhat.com> | 2015-02-25 16:33:59 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2015-04-13 19:55:25 -0400 |
| commit | 7fdbd9d48a4e447d4ea42268afb80a1ee84b633b (patch) | |
| tree | eb2616cc6b941d7d2688554d88e2fbe7e0447c13 /include/console.h | |
| parent | 6b2510522f92026dc17e1c5508bbfab935741012 (diff) | |
| download | efi-boot-shim-7fdbd9d48a4e447d4ea42268afb80a1ee84b633b.tar.gz efi-boot-shim-7fdbd9d48a4e447d4ea42268afb80a1ee84b633b.zip | |
Make lib/ build right with the cflags it should be using...
... but isn't.
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'include/console.h')
| -rw-r--r-- | include/console.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/console.h b/include/console.h index 9c793ea5..ecaa73f5 100644 --- a/include/console.h +++ b/include/console.h @@ -4,13 +4,16 @@ EFI_STATUS console_get_keystroke(EFI_INPUT_KEY *key); void -console_print_box_at(CHAR16 *str_arr[], int highlight, int start_col, int start_row, int size_cols, int size_rows, int offset, int lines); +console_print_box_at(CHAR16 *str_arr[], unsigned int highlight, + unsigned int start_col, unsigned int start_row, + unsigned int size_cols, unsigned int size_rows, + int offset, unsigned int lines); void -console_print_box(CHAR16 *str_arr[], int highlight); +console_print_box(CHAR16 *str_arr[], unsigned int highlight); int console_yes_no(CHAR16 *str_arr[]); int -console_select(CHAR16 *title[], CHAR16* selectors[], int start); +console_select(CHAR16 *title[], CHAR16* selectors[], unsigned int start); void console_errorbox(CHAR16 *err); void |
