mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-16 17:59:19 +01:00
13 lines
255 B
C
13 lines
255 B
C
#pragma once
|
|
|
|
void console_init(void);
|
|
void console_exit(void);
|
|
|
|
__attribute__((format(printf,1,2)))
|
|
void console_set_status(const char *fmt, ...);
|
|
|
|
__attribute__((format(printf,1,2)))
|
|
void console_print(const char *fmt, ...);
|
|
|
|
void console_render(void);
|