kvisc/vm/pc/console.h

22 lines
491 B
C

// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
// Critical ordering
#include <pc/arch.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_ttf.h>
#include <pc/keybd.h>
void console_init(void);
void console_exit(void);
void console_render(void);
void console_putat(char ch, int x, int y);
void console_putc(char ch);
void console_update(void);
void console_clear(void);
void console_handle_input(SDL_Keycode);