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

11 lines
275 B
C
Raw Normal View History

#ifndef FUSEE_CONSOLE_H
#define FUSEE_CONSOLE_H
int console_init(bool display_initialized);
2018-05-12 19:39:29 +00:00
void *console_get_framebuffer(bool enable_display);
int console_display(const void *framebuffer); /* Must be page-aligned */
int console_resume(void);
int console_end(void);
#endif