mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-27 10:50:29 +00:00
27 lines
410 B
C
27 lines
410 B
C
|
#ifndef UGUI_TOOLS_H_
|
||
|
#define UGUI_TOOLS_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* bpp = bytes per pixel */
|
||
|
void gui_init(int width, int height, int bpp);
|
||
|
|
||
|
void gui_draw(void);
|
||
|
|
||
|
void gui_set_window_title(const char *title);
|
||
|
|
||
|
void gui_set_message(const char *message);
|
||
|
|
||
|
void gui_window_resize(int x, int y, int width, int height);
|
||
|
|
||
|
unsigned* gui_get_framebuffer(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|