beetle-psx-libretro/ugui_tools.h
twinaphex 87a695dbe4 Revert "(ugui) Move all files to deps folder"
This reverts commit 5fbf0b0a922aaa118eebeac3eb897a75b4b79189.
2019-07-02 04:15:43 +02:00

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