X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2FWM%2Finclude%2Fwm.h;h=a5a779fcbbd4520405c1272d58b92091b02ff7f1;hb=fbe3dc8eed612e18263f96fe59ccf79ab587ce0b;hp=79b8b3ae84e2e2fcd004485399a49ffe1801a256;hpb=52508b805ef1512b016b74461f080411cf076088;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/WM/include/wm.h b/Usermode/Applications/axwin3_src/WM/include/wm.h index 79b8b3ae..a5a779fc 100644 --- a/Usermode/Applications/axwin3_src/WM/include/wm.h +++ b/Usermode/Applications/axwin3_src/WM/include/wm.h @@ -27,12 +27,12 @@ typedef uint32_t tColour; // === FUNCTIONS === // --- Management -extern tWindow *WM_CreateWindow(tWindow *Parent, int X, int Y, int W, int H, int Flags, tWMRenderer *Handler); +extern tWindow *WM_CreateWindow(tWindow *Parent, int Flags, const char *Renderer); extern int WM_Reposition(tWindow *Window, int X, int Y, int W, int H); extern int WM_SetFlags(tWindow *Window, int Flags); extern int WM_SendMessage(tWindow *Window, int MessageID, int Length, void *Data); // --- Rendering -extern void Render_DrawFilledRect(tWindow *Window, tColour Colour, int X, int Y, int W, int H); +extern void WM_Render_FilledRect(tWindow *Window, tColour Colour, int X, int Y, int W, int H); #endif