Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing static function prototypes to make compiler happy. #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions ugui.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@
void _UG_CheckboxUpdate(UG_WINDOW* wnd, UG_OBJECT* obj);
void _UG_ImageUpdate(UG_WINDOW* wnd, UG_OBJECT* obj);
void _UG_PutChar( char chr, UG_S16 x, UG_S16 y, UG_COLOR fc, UG_COLOR bc, const UG_FONT* font);
void _UG_PutText(UG_TEXT* txt);
UG_OBJECT* _UG_GetFreeObject( UG_WINDOW* wnd );
UG_OBJECT* _UG_SearchObject( UG_WINDOW* wnd, UG_U8 type, UG_U8 id );
UG_RESULT _UG_DeleteObject( UG_WINDOW* wnd, UG_U8 type, UG_U8 id );
void _UG_ProcessTouchData( UG_WINDOW* wnd );
void _UG_UpdateObjects( UG_WINDOW* wnd );
void _UG_HandleEvents( UG_WINDOW* wnd );
void _UG_DrawObjectFrame( UG_S16 xs, UG_S16 ys, UG_S16 xe, UG_S16 ye, UG_COLOR* p );
void _UG_SendObjectPrerenderEvent(UG_WINDOW *wnd,UG_OBJECT *obj);
void _UG_SendObjectPostrenderEvent(UG_WINDOW *wnd,UG_OBJECT *obj);

/* Pointer to the gui */
static UG_GUI* gui;
Expand Down