X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin2_src%2FWM%2Fcommon.h;h=2df0b55a9dc2d6a3364ac657122785b9e42b0978;hb=d5834686ad14b66420060192445f06bce85db389;hp=13379fa1dfc4b45846cc8f9ecffc02e3ef17ad9e;hpb=775bf8013abe9fe4ef3d4883ea2e43bba2a84da1;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin2_src/WM/common.h b/Usermode/Applications/axwin2_src/WM/common.h index 13379fa1..2df0b55a 100644 --- a/Usermode/Applications/axwin2_src/WM/common.h +++ b/Usermode/Applications/axwin2_src/WM/common.h @@ -10,6 +10,8 @@ #include #include "wm.h" +#include "image.h" +//#include "font.h" // === GLOBALS === extern char *gsTerminalDevice; @@ -24,5 +26,12 @@ extern int giMouseFD; // === Functions === extern void memset32(void *ptr, uint32_t val, size_t count); - +// --- Video --- +extern void Video_Update(void); +extern void Video_FillRect(short X, short Y, short W, short H, uint32_t Color); +extern void Video_DrawRect(short X, short Y, short W, short H, uint32_t Color); +extern void Video_DrawText(short X, short Y, short W, short H, void *Font, int Point, uint32_t Color, char *Text); +extern void Video_DrawImage(short X, short Y, short W, short H, tImage *Image); +// --- Debug Hack --- +extern void _SysDebug(const char *Format, ...); #endif