Usermode/AxWin3 - Fixed all compile errors, runs and cursor moves, that is all
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / wm.c
1 /*
2  * Acess2 Window Manager v3
3  * - By John Hodge (thePowersGang)
4  *
5  * wm.c
6  * - Window manager core
7  */
8 #include <common.h>
9 #include <wm_renderer.h>
10
11 // === CODE ===
12 void WM_RegisterRenderer(tWMRenderer *Renderer)
13 {
14         UNIMPLEMENTED();
15 }
16
17 tWindow *WM_CreateWindowStruct(size_t ExtraSize)
18 {
19         return NULL;
20 }
21
22 void WM_Render_FilledRect(tWindow *Window, tColour Colour, int X, int Y, int W, int H)
23 {
24         UNIMPLEMENTED();
25 }
26

UCC git Repository :: git.ucc.asn.au