Use alertable waits in PeekMessage16 and GetMessage16 so we can
[wine] / include / user.h
1 /*
2  * USER definitions
3  *
4  * Copyright 1993 Alexandre Julliard
5  */
6
7 #ifndef __WINE_USER_H
8 #define __WINE_USER_H
9
10 #include "winbase.h"
11 #include "wingdi.h"
12 #include "winuser.h"
13
14 #include "local.h"
15
16 extern WORD USER_HeapSel;
17
18 #define USER_HEAP_ALLOC(size) \
19             LOCAL_Alloc( USER_HeapSel, LMEM_FIXED, (size) )
20 #define USER_HEAP_REALLOC(handle,size) \
21             LOCAL_ReAlloc( USER_HeapSel, (handle), (size), LMEM_FIXED )
22 #define USER_HEAP_FREE(handle) \
23             LOCAL_Free( USER_HeapSel, (handle) )
24 #define USER_HEAP_LIN_ADDR(handle)  \
25          ((handle) ? MapSL(MAKESEGPTR(USER_HeapSel, (handle))) : NULL)
26
27 #define USUD_LOCALALLOC        0x0001
28 #define USUD_LOCALFREE         0x0002
29 #define USUD_LOCALCOMPACT      0x0003
30 #define USUD_LOCALHEAP         0x0004
31 #define USUD_FIRSTCLASS        0x0005
32
33 struct tagCURSORICONINFO;
34
35 /* internal messages codes */
36 enum wine_internal_message
37 {
38     WM_WINE_DESTROYWINDOW = 0x80000000,
39     WM_WINE_SETWINDOWPOS,
40     WM_WINE_SHOWWINDOW,
41     WM_WINE_SETPARENT,
42     WM_WINE_SETWINDOWLONG,
43     WM_WINE_ENABLEWINDOW
44 };
45
46 /* internal SendInput codes (FIXME) */
47 #define WINE_INTERNAL_INPUT_MOUSE    (16+INPUT_MOUSE)
48 #define WINE_INTERNAL_INPUT_KEYBOARD (16+INPUT_KEYBOARD)
49
50 typedef struct tagUSER_DRIVER {
51     /* keyboard functions */
52     void   (*pInitKeyboard)(LPBYTE);
53     WORD   (*pVkKeyScan)(CHAR);
54     UINT   (*pMapVirtualKey)(UINT,UINT);
55     INT    (*pGetKeyNameText)(LONG,LPSTR,INT);
56     INT    (*pToUnicode)(UINT, UINT, LPBYTE, LPWSTR, int, UINT);
57     void   (*pBeep)(void);
58     /* mouse functions */
59     void   (*pInitMouse)(LPBYTE);
60     void   (*pSetCursor)(struct tagCURSORICONINFO *);
61     void   (*pGetCursorPos)(LPPOINT);
62     void   (*pSetCursorPos)(INT,INT);
63     /* screen saver functions */
64     BOOL   (*pGetScreenSaveActive)(void);
65     void   (*pSetScreenSaveActive)(BOOL);
66     /* resource functions */
67     HANDLE (*pLoadOEMResource)(WORD,WORD);
68     /* clipboard functions */
69     void   (*pAcquireClipboard)(void);            /* Acquire selection */
70     void   (*pReleaseClipboard)(void);            /* Release selection */
71     void   (*pSetClipboardData)(UINT);            /* Set specified selection data */
72     BOOL   (*pGetClipboardData)(UINT);            /* Get specified selection data */
73     BOOL   (*pIsClipboardFormatAvailable)(UINT);  /* Check if specified format is available */
74     BOOL   (*pRegisterClipboardFormat)(LPCSTR);   /* Register a clipboard format */
75     BOOL   (*pIsSelectionOwner)(void);            /* Check if we own the selection */
76     void   (*pResetSelectionOwner)(HWND, BOOL);
77
78     /* windowing functions */
79     BOOL   (*pCreateWindow)(HWND,CREATESTRUCTA*,BOOL);
80     BOOL   (*pDestroyWindow)(HWND);
81     BOOL   (*pGetDC)(HWND,HDC,HRGN,DWORD);
82     void   (*pForceWindowRaise)(HWND);
83     DWORD  (*pMsgWaitForMultipleObjectsEx)(DWORD,const HANDLE*,DWORD,DWORD,DWORD);
84     BOOL   (*pScrollDC)(HDC,INT,INT,const RECT*,const RECT*,HRGN,LPRECT);
85     INT    (*pScrollWindowEx)(HWND,INT,INT,const RECT*,const RECT*,HRGN,LPRECT,UINT);
86     void   (*pSetFocus)(HWND);
87     HWND   (*pSetParent)(HWND,HWND);
88     BOOL   (*pSetWindowPos)(WINDOWPOS *);
89     int    (*pSetWindowRgn)(HWND,HRGN,BOOL);
90     HICON  (*pSetWindowIcon)(HWND,HICON,BOOL);
91     void   (*pSetWindowStyle)(HWND,DWORD);
92     BOOL   (*pSetWindowText)(HWND,LPCWSTR);
93     BOOL   (*pShowWindow)(HWND,INT);
94     void   (*pSysCommandSizeMove)(HWND,WPARAM);
95 } USER_DRIVER;
96
97 extern USER_DRIVER USER_Driver;
98
99 WORD WINAPI UserSignalProc( UINT uCode, DWORD dwThreadOrProcessID,
100                             DWORD dwFlags, HMODULE16 hModule );
101
102 /* user lock */
103 extern void USER_Lock(void);
104 extern void USER_Unlock(void);
105 extern void USER_CheckNotLock(void);
106
107 extern BOOL USER_IsExitingThread( DWORD tid );
108
109 /* Wine look */
110
111 typedef enum
112 {
113     WIN31_LOOK,
114     WIN95_LOOK,
115     WIN98_LOOK
116 } WINE_LOOK;
117
118 extern WINE_LOOK TWEAK_WineLook;
119
120 /* gray brush cache */
121 extern HBRUSH CACHE_GetPattern55AABrush(void);
122
123 extern DWORD USER16_AlertableWait;
124
125 #endif  /* __WINE_USER_H */