More code moved to the X11 driver (bitmap and palette and misc).
diff --git a/include/user.h b/include/user.h
index 2e9923c..f7ab2ba 100644
--- a/include/user.h
+++ b/include/user.h
@@ -29,6 +29,15 @@
#define USUD_LOCALHEAP 0x0004
#define USUD_FIRSTCLASS 0x0005
+typedef struct tagUSER_DRIVER {
+ BOOL (*pInitialize)(void);
+ void (*pFinalize)(void);
+ void (*pBeginDebugging)(void);
+ void (*pEndDebugging)(void);
+} USER_DRIVER;
+
+extern USER_DRIVER *USER_Driver;
+
void WINAPI USER_SignalProc(HANDLE16, UINT16, UINT16, HINSTANCE16, HQUEUE16);
void USER_ExitWindows(void);
void USER_QueueCleanup( HQUEUE16 hQueue );