1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/vm/pc/console.h
2019-06-21 19:38:31 +02:00

20 lines
521 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(ctx_t *ctx);
void console_exit(ctx_t *ctx);
void console_render(ctx_t *ctx);
void console_putat(ctx_t *ctx, char ch, int x, int y);
void console_putc(ctx_t *ctx, char ch);
void console_update(ctx_t *ctx);
void console_handle_input(ctx_t *, SDL_Keycode);