mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
154 lines
5.2 KiB
C
154 lines
5.2 KiB
C
/*
|
|
* USER definitions
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef __WINE_USER_H
|
|
#define __WINE_USER_H
|
|
|
|
#include "winbase.h"
|
|
#include "wingdi.h"
|
|
#include "winuser.h"
|
|
|
|
#include "local.h"
|
|
|
|
extern WORD USER_HeapSel;
|
|
|
|
#define USER_HEAP_ALLOC(size) \
|
|
((HANDLE)(ULONG_PTR)LOCAL_Alloc( USER_HeapSel, LMEM_FIXED, (size) ))
|
|
#define USER_HEAP_REALLOC(handle,size) \
|
|
((HANDLE)(ULONG_PTR)LOCAL_ReAlloc( USER_HeapSel, LOWORD(handle), (size), LMEM_FIXED ))
|
|
#define USER_HEAP_FREE(handle) \
|
|
LOCAL_Free( USER_HeapSel, LOWORD(handle) )
|
|
#define USER_HEAP_LIN_ADDR(handle) \
|
|
((handle) ? MapSL(MAKESEGPTR(USER_HeapSel, LOWORD(handle))) : NULL)
|
|
|
|
#define GET_WORD(ptr) (*(WORD *)(ptr))
|
|
#define GET_DWORD(ptr) (*(DWORD *)(ptr))
|
|
|
|
#define USUD_LOCALALLOC 0x0001
|
|
#define USUD_LOCALFREE 0x0002
|
|
#define USUD_LOCALCOMPACT 0x0003
|
|
#define USUD_LOCALHEAP 0x0004
|
|
#define USUD_FIRSTCLASS 0x0005
|
|
|
|
struct tagCURSORICONINFO;
|
|
|
|
/* internal messages codes */
|
|
enum wine_internal_message
|
|
{
|
|
WM_WINE_DESTROYWINDOW = 0x80000000,
|
|
WM_WINE_SETWINDOWPOS,
|
|
WM_WINE_SHOWWINDOW,
|
|
WM_WINE_SETPARENT,
|
|
WM_WINE_SETWINDOWLONG,
|
|
WM_WINE_ENABLEWINDOW,
|
|
WM_WINE_SETACTIVEWINDOW
|
|
};
|
|
|
|
/* internal SendInput codes (FIXME) */
|
|
#define WINE_INTERNAL_INPUT_MOUSE (16+INPUT_MOUSE)
|
|
#define WINE_INTERNAL_INPUT_KEYBOARD (16+INPUT_KEYBOARD)
|
|
|
|
typedef struct tagUSER_DRIVER {
|
|
/* keyboard functions */
|
|
void (*pInitKeyboard)(LPBYTE);
|
|
WORD (*pVkKeyScan)(CHAR);
|
|
UINT (*pMapVirtualKey)(UINT,UINT);
|
|
INT (*pGetKeyNameText)(LONG,LPSTR,INT);
|
|
INT (*pToUnicode)(UINT, UINT, LPBYTE, LPWSTR, int, UINT);
|
|
void (*pBeep)(void);
|
|
/* mouse functions */
|
|
void (*pInitMouse)(LPBYTE);
|
|
void (*pSetCursor)(struct tagCURSORICONINFO *);
|
|
void (*pGetCursorPos)(LPPOINT);
|
|
void (*pSetCursorPos)(INT,INT);
|
|
/* screen saver functions */
|
|
BOOL (*pGetScreenSaveActive)(void);
|
|
void (*pSetScreenSaveActive)(BOOL);
|
|
/* clipboard functions */
|
|
void (*pAcquireClipboard)(void); /* Acquire selection */
|
|
void (*pReleaseClipboard)(void); /* Release selection */
|
|
void (*pSetClipboardData)(UINT); /* Set specified selection data */
|
|
BOOL (*pGetClipboardData)(UINT); /* Get specified selection data */
|
|
BOOL (*pIsClipboardFormatAvailable)(UINT); /* Check if specified format is available */
|
|
INT (*pRegisterClipboardFormat)(LPCSTR); /* Register a clipboard format */
|
|
BOOL (*pGetClipboardFormatName)(UINT, LPSTR, UINT); /* Get a clipboard format name */
|
|
BOOL (*pIsSelectionOwner)(void); /* Check if we own the selection */
|
|
void (*pResetSelectionOwner)(HWND, BOOL);
|
|
|
|
/* windowing functions */
|
|
BOOL (*pCreateWindow)(HWND,CREATESTRUCTA*,BOOL);
|
|
BOOL (*pDestroyWindow)(HWND);
|
|
BOOL (*pGetDC)(HWND,HDC,HRGN,DWORD);
|
|
void (*pForceWindowRaise)(HWND);
|
|
DWORD (*pMsgWaitForMultipleObjectsEx)(DWORD,const HANDLE*,DWORD,DWORD,DWORD);
|
|
BOOL (*pScrollDC)(HDC,INT,INT,const RECT*,const RECT*,HRGN,LPRECT);
|
|
INT (*pScrollWindowEx)(HWND,INT,INT,const RECT*,const RECT*,HRGN,LPRECT,UINT);
|
|
void (*pSetFocus)(HWND);
|
|
HWND (*pSetParent)(HWND,HWND);
|
|
BOOL (*pSetWindowPos)(WINDOWPOS *);
|
|
int (*pSetWindowRgn)(HWND,HRGN,BOOL);
|
|
HICON (*pSetWindowIcon)(HWND,HICON,BOOL);
|
|
void (*pSetWindowStyle)(HWND,DWORD);
|
|
BOOL (*pSetWindowText)(HWND,LPCWSTR);
|
|
BOOL (*pShowWindow)(HWND,INT);
|
|
void (*pSysCommandSizeMove)(HWND,WPARAM);
|
|
} USER_DRIVER;
|
|
|
|
extern USER_DRIVER USER_Driver;
|
|
|
|
WORD WINAPI UserSignalProc( UINT uCode, DWORD dwThreadOrProcessID,
|
|
DWORD dwFlags, HMODULE16 hModule );
|
|
|
|
/* user lock */
|
|
extern void USER_Lock(void);
|
|
extern void USER_Unlock(void);
|
|
extern void USER_CheckNotLock(void);
|
|
|
|
extern BOOL USER_IsExitingThread( DWORD tid );
|
|
|
|
/* Wine look */
|
|
|
|
typedef enum
|
|
{
|
|
WIN31_LOOK,
|
|
WIN95_LOOK,
|
|
WIN98_LOOK
|
|
} WINE_LOOK;
|
|
|
|
extern WINE_LOOK TWEAK_WineLook;
|
|
|
|
/* gray brush cache */
|
|
extern HBRUSH CACHE_GetPattern55AABrush(void);
|
|
|
|
/* syscolor.c */
|
|
extern HPEN SYSCOLOR_GetPen( INT index );
|
|
|
|
extern HPALETTE WINAPI SelectPalette( HDC hDC, HPALETTE hPal, BOOL bForceBackground );
|
|
|
|
extern DWORD USER16_AlertableWait;
|
|
|
|
/* HANDLE16 <-> HANDLE conversions */
|
|
#define HCURSOR_16(h32) (LOWORD(h32))
|
|
#define HICON_16(h32) (LOWORD(h32))
|
|
|
|
#define HCURSOR_32(h16) ((HCURSOR)(ULONG_PTR)(h16))
|
|
#define HICON_32(h16) ((HICON)(ULONG_PTR)(h16))
|
|
|
|
#endif /* __WINE_USER_H */
|