1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-06 20:21:44 +00:00
Atmosphere/fusee/fusee-secondary/src/console.h

11 lines
255 B
C
Raw Normal View History

#ifndef FUSEE_CONSOLE_H
#define FUSEE_CONSOLE_H
int console_init(void);
2018-05-12 20:39:29 +01: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