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
9d14a001
Commit
9d14a001
authored
May 08, 1999
by
Michael Veksler
Committed by
Alexandre Julliard
May 08, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed #include "wine/winuser16.h" and use "struct tag????" instead.
parent
b4a5db55
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
8 deletions
+16
-8
ttydrv.h
include/ttydrv.h
+7
-4
winpos.h
include/winpos.h
+3
-2
display.c
windows/display.c
+1
-1
focus.c
windows/focus.c
+1
-0
nonclient.c
windows/nonclient.c
+1
-0
mouse.c
windows/ttydrv/mouse.c
+1
-1
win.c
windows/win.c
+1
-0
winpos.c
windows/winpos.c
+1
-0
No files found.
include/ttydrv.h
View file @
9d14a001
...
...
@@ -7,7 +7,7 @@
#include "windef.h"
#include "wingdi.h"
#include "wine/win
user
16.h"
#include "wine/win
gdi
16.h"
struct
tagBITMAPOBJ
;
struct
tagCLASS
;
...
...
@@ -15,6 +15,9 @@ struct tagDC;
struct
tagDESKTOP
;
struct
tagPALETTEOBJ
;
struct
tagWND
;
struct
tagCURSORICONINFO
;
struct
tagCREATESTRUCTA
;
struct
tagWINDOWPOS
;
/**************************************************************************
* TTY GDI driver
...
...
@@ -139,7 +142,7 @@ extern void TTYDRV_MONITOR_SetScreenSaveTimeout(struct tagMONITOR *pMonitor, int
extern
struct
tagMOUSE_DRIVER
TTYDRV_MOUSE_Driver
;
extern
void
TTYDRV_MOUSE_SetCursor
(
CURSORICONINFO
*
lpCursor
);
extern
void
TTYDRV_MOUSE_SetCursor
(
struct
tag
CURSORICONINFO
*
lpCursor
);
extern
void
TTYDRV_MOUSE_MoveCursor
(
WORD
wAbsX
,
WORD
wAbsY
);
extern
BOOL
TTYDRV_MOUSE_EnableWarpPointer
(
BOOL
bEnable
);
...
...
@@ -150,11 +153,11 @@ extern struct tagWND_DRIVER TTYDRV_WND_Driver;
extern
void
TTYDRV_WND_Initialize
(
struct
tagWND
*
wndPtr
);
extern
void
TTYDRV_WND_Finalize
(
struct
tagWND
*
wndPtr
);
extern
BOOL
TTYDRV_WND_CreateDesktopWindow
(
struct
tagWND
*
wndPtr
,
struct
tagCLASS
*
classPtr
,
BOOL
bUnicode
);
extern
BOOL
TTYDRV_WND_CreateWindow
(
struct
tagWND
*
wndPtr
,
struct
tagCLASS
*
classPtr
,
CREATESTRUCTA
*
cs
,
BOOL
bUnicode
);
extern
BOOL
TTYDRV_WND_CreateWindow
(
struct
tagWND
*
wndPtr
,
struct
tagCLASS
*
classPtr
,
struct
tag
CREATESTRUCTA
*
cs
,
BOOL
bUnicode
);
extern
BOOL
TTYDRV_WND_DestroyWindow
(
struct
tagWND
*
pWnd
);
extern
struct
tagWND
*
TTYDRV_WND_SetParent
(
struct
tagWND
*
wndPtr
,
struct
tagWND
*
pWndParent
);
extern
void
TTYDRV_WND_ForceWindowRaise
(
struct
tagWND
*
pWnd
);
extern
void
TTYDRV_WND_SetWindowPos
(
struct
tagWND
*
wndPtr
,
const
WINDOWPOS
*
winpos
,
BOOL
bSMC_SETXPOS
);
extern
void
TTYDRV_WND_SetWindowPos
(
struct
tagWND
*
wndPtr
,
const
struct
tag
WINDOWPOS
*
winpos
,
BOOL
bSMC_SETXPOS
);
extern
void
TTYDRV_WND_SetText
(
struct
tagWND
*
wndPtr
,
LPCSTR
text
);
extern
void
TTYDRV_WND_SetFocus
(
struct
tagWND
*
wndPtr
);
extern
void
TTYDRV_WND_PreSizeMove
(
struct
tagWND
*
wndPtr
);
...
...
include/winpos.h
View file @
9d14a001
...
...
@@ -8,7 +8,6 @@
#define __WINE_WINPOS_H
#include "win.h"
#include "wine/winuser16.h"
/* for WINDOWPOS16 */
#define DWP_MAGIC ((INT)('W' | ('P' << 8) | ('O' << 16) | ('S' << 24)))
...
...
@@ -16,6 +15,8 @@
#define SWP_NOCLIENTSIZE 0x0800
#define SWP_NOCLIENTMOVE 0x1000
struct
tagWINDOWPOS16
;
typedef
struct
{
INT
actualCount
;
...
...
@@ -39,7 +40,7 @@ extern LONG WINPOS_SendNCCalcSize(HWND hwnd, BOOL calcValidRect,
RECT
*
newWindowRect
,
RECT
*
oldWindowRect
,
RECT
*
oldClientRect
,
WINDOWPOS
*
winpos
,
RECT
*
newClientRect
);
extern
LONG
WINPOS_HandleWindowPosChanging16
(
WND
*
wndPtr
,
WINDOWPOS16
*
winpos
);
extern
LONG
WINPOS_HandleWindowPosChanging16
(
WND
*
wndPtr
,
struct
tag
WINDOWPOS16
*
winpos
);
extern
LONG
WINPOS_HandleWindowPosChanging
(
WND
*
wndPtr
,
WINDOWPOS
*
winpos
);
extern
INT16
WINPOS_WindowFromPoint
(
WND
*
scopeWnd
,
POINT16
pt
,
WND
**
ppWnd
);
extern
void
WINPOS_CheckInternalPos
(
WND
*
wndPtr
);
...
...
windows/display.c
View file @
9d14a001
...
...
@@ -27,7 +27,7 @@ WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo)
/***********************************************************************
* DISPLAY_SetCursor (DISPLAY.102)
*/
VOID
WINAPI
DISPLAY_SetCursor
(
CURSORICONINFO
*
lpCursor
)
VOID
WINAPI
DISPLAY_SetCursor
(
struct
tag
CURSORICONINFO
*
lpCursor
)
{
MOUSE_Driver
->
pSetCursor
(
lpCursor
);
}
...
...
windows/focus.c
View file @
9d14a001
...
...
@@ -7,6 +7,7 @@
*
*/
#include "wine/winuser16.h"
#include "win.h"
#include "winpos.h"
#include "hook.h"
...
...
windows/nonclient.c
View file @
9d14a001
...
...
@@ -5,6 +5,7 @@
*
*/
#include "wine/winuser16.h"
#include "version.h"
#include "win.h"
#include "message.h"
...
...
windows/ttydrv/mouse.c
View file @
9d14a001
...
...
@@ -9,7 +9,7 @@
/***********************************************************************
* TTYDRV_MOUSE_SetCursor
*/
void
TTYDRV_MOUSE_SetCursor
(
CURSORICONINFO
*
lpCursor
)
void
TTYDRV_MOUSE_SetCursor
(
struct
tag
CURSORICONINFO
*
lpCursor
)
{
}
...
...
windows/win.c
View file @
9d14a001
...
...
@@ -7,6 +7,7 @@
#include <stdlib.h>
#include <string.h>
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "options.h"
#include "class.h"
#include "win.h"
...
...
windows/winpos.c
View file @
9d14a001
...
...
@@ -6,6 +6,7 @@
*/
#include <string.h>
#include "wine/winuser16.h"
#include "sysmetrics.h"
#include "heap.h"
#include "module.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