Atmosphere/fusee/fusee-secondary/src/console.h

10 lines
203 B
C
Raw Normal View History

#ifndef FUSEE_CONSOLE_H
#define FUSEE_CONSOLE_H
int console_init(void);
int console_display(const void *framebuffer); /* Must be page-aligned */
int console_resume(void);
int console_end(void);
#endif