Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e94e3543
Commit
e94e3543
authored
Mar 22, 1999
by
Veksler Michael
Committed by
Alexandre Julliard
Mar 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed winuser16.h from x11drv.h.
parent
fdedc348
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
7 deletions
+15
-7
wing.c
graphics/wing.c
+1
-0
xfont.c
graphics/x11drv/xfont.c
+1
-0
winuser16.h
include/wine/winuser16.h
+1
-1
winuser.h
include/winuser.h
+2
-2
x11drv.h
include/x11drv.h
+7
-4
main.c
misc/main.c
+1
-0
clipboard.c
windows/x11drv/clipboard.c
+1
-0
keyboard.c
windows/x11drv/keyboard.c
+1
-0
No files found.
graphics/wing.c
View file @
e94e3543
...
...
@@ -17,6 +17,7 @@
#endif
/* defined(HAVE_LIBXXSHM) */
#include "x11drv.h"
#include "wine/winuser16.h"
#include "bitmap.h"
#include "palette.h"
#include "dc.h"
...
...
graphics/x11drv/xfont.c
View file @
e94e3543
...
...
@@ -26,6 +26,7 @@
#include <fcntl.h>
#include <math.h>
#include <assert.h>
#include "winuser.h"
#include "heap.h"
#include "options.h"
#include "font.h"
...
...
include/wine/winuser16.h
View file @
e94e3543
...
...
@@ -68,7 +68,7 @@ typedef struct
/* Cursors / Icons */
typedef
struct
typedef
struct
tagCURSORICONINFO
{
POINT16
ptHotSpot
;
WORD
nWidth
;
...
...
include/winuser.h
View file @
e94e3543
...
...
@@ -648,7 +648,7 @@ typedef struct
/****** Window classes ******/
typedef
struct
typedef
struct
tagCREATESTRUCTA
{
LPVOID
lpCreateParams
;
HINSTANCE
hInstance
;
...
...
@@ -785,7 +785,7 @@ typedef struct
#define DBGFILL_STACK 0xf7
/* WM_WINDOWPOSCHANGING/CHANGED struct */
typedef
struct
typedef
struct
tagWINDOWPOS
{
HWND
hwnd
;
HWND
hwndInsertAfter
;
...
...
include/x11drv.h
View file @
e94e3543
...
...
@@ -14,14 +14,17 @@
#include <X11/Xatom.h>
#endif
/* !defined(X_DISPLAY_MISSING) */
#include "winbase.h"
#include "gdi.h"
#include "windef.h"
#include "wine/winuser16.h"
struct
tagCLASS
;
struct
tagDC
;
struct
tagDeviceCaps
;
struct
tagWND
;
struct
tagCREATESTRUCTA
;
struct
tagWINDOWPOS
;
struct
tagCURSORICONINFO
;
/* X physical pen */
typedef
struct
...
...
@@ -316,7 +319,7 @@ extern int X11DRV_MONITOR_GetDepth(struct tagMONITOR *pMonitor);
extern
struct
_MOUSE_DRIVER
X11DRV_MOUSE_Driver
;
extern
void
X11DRV_MOUSE_SetCursor
(
CURSORICONINFO
*
lpCursor
);
extern
void
X11DRV_MOUSE_SetCursor
(
struct
tag
CURSORICONINFO
*
lpCursor
);
extern
void
X11DRV_MOUSE_MoveCursor
(
WORD
wAbsX
,
WORD
wAbsY
);
/* X11 windows driver */
...
...
@@ -335,11 +338,11 @@ extern Window X11DRV_WND_GetXRootWindow(struct tagWND *wndPtr);
extern
void
X11DRV_WND_Initialize
(
struct
tagWND
*
wndPtr
);
extern
void
X11DRV_WND_Finalize
(
struct
tagWND
*
wndPtr
);
extern
BOOL
X11DRV_WND_CreateDesktopWindow
(
struct
tagWND
*
wndPtr
,
struct
tagCLASS
*
classPtr
,
BOOL
bUnicode
);
extern
BOOL
X11DRV_WND_CreateWindow
(
struct
tagWND
*
wndPtr
,
struct
tagCLASS
*
classPtr
,
CREATESTRUCTA
*
cs
,
BOOL
bUnicode
);
extern
BOOL
X11DRV_WND_CreateWindow
(
struct
tagWND
*
wndPtr
,
struct
tagCLASS
*
classPtr
,
struct
tag
CREATESTRUCTA
*
cs
,
BOOL
bUnicode
);
extern
BOOL
X11DRV_WND_DestroyWindow
(
struct
tagWND
*
pWnd
);
extern
struct
tagWND
*
X11DRV_WND_SetParent
(
struct
tagWND
*
wndPtr
,
struct
tagWND
*
pWndParent
);
extern
void
X11DRV_WND_ForceWindowRaise
(
struct
tagWND
*
pWnd
);
extern
void
X11DRV_WND_SetWindowPos
(
struct
tagWND
*
wndPtr
,
const
WINDOWPOS
*
winpos
,
BOOL
bSMC_SETXPOS
);
extern
void
X11DRV_WND_SetWindowPos
(
struct
tagWND
*
wndPtr
,
const
struct
tag
WINDOWPOS
*
winpos
,
BOOL
bSMC_SETXPOS
);
extern
void
X11DRV_WND_SetText
(
struct
tagWND
*
wndPtr
,
LPCSTR
text
);
extern
void
X11DRV_WND_SetFocus
(
struct
tagWND
*
wndPtr
);
extern
void
X11DRV_WND_PreSizeMove
(
struct
tagWND
*
wndPtr
);
...
...
misc/main.c
View file @
e94e3543
...
...
@@ -21,6 +21,7 @@
#ifdef MALLOC_DEBUGGING
# include <malloc.h>
#endif
#include "wine/winuser16.h"
#include "winbase.h"
#include "winsock.h"
#include "heap.h"
...
...
windows/x11drv/clipboard.c
View file @
e94e3543
...
...
@@ -12,6 +12,7 @@
#include <X11/Xatom.h>
#include "ts_xlib.h"
#include "wine/winuser16.h"
#include "clipboard.h"
#include "debug.h"
#include "message.h"
...
...
windows/x11drv/keyboard.c
View file @
e94e3543
...
...
@@ -19,6 +19,7 @@
#include "ts_xresource.h"
#include "ts_xutil.h"
#include "wine/winuser16.h"
#include "debug.h"
#include "keyboard.h"
#include "message.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment