X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=src%2Fconsole.h;fp=src%2Fconsole.h;h=ed2c337256cb833f7871e39c4d3d32ef6c8b89bc;hp=0000000000000000000000000000000000000000;hb=c912e59b898fe1ac461a1468e4a2e1937de286d7;hpb=815504923a05c5f22a756b021997983e512474e1 diff --git a/src/console.h b/src/console.h new file mode 100644 index 0000000..ed2c337 --- /dev/null +++ b/src/console.h @@ -0,0 +1,14 @@ +#ifndef CONSOLE_H_ +#define CONSOLE_H_ + +#include "inttypes.h" + +int con_init(void); +void con_start(void); +void con_stop(void); +void con_draw(uint16_t *fb); +int con_input(int key); + +void con_printf(const char *fmt, ...); + +#endif /* CONSOLE_H_ */