mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 20:21:44 +00:00
10 lines
275 B
C
10 lines
275 B
C
#ifndef FUSEE_CONSOLE_H
|
|
#define FUSEE_CONSOLE_H
|
|
|
|
int console_init(bool display_initialized);
|
|
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
|