console.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00017 #ifndef __CONSOLE_H__
00018 #define __CONSOLE_H__
00019
00020 #include <types.h>
00021
00035 void console_initialize(int vmode, void* fb, int x, int y, int w, int h, int fw, int fh, u8 font[]);
00042 void console_simple_init(int vmode, void* fb);
00043
00048 void console_set_framebuffer(void* fb);
00049
00055 void print_str(const char *str, size_t len);
00062 int gfx_printf(const char *fmt, ...) __attribute__((deprecated));
00063
00064 #endif
00065