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
cd2b41a2
Commit
cd2b41a2
authored
Jun 22, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineandroid: Create window groups inside every window to support a client area.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f77bbd45
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
WineActivity.java
dlls/wineandroid.drv/WineActivity.java
+0
-0
device.c
dlls/wineandroid.drv/device.c
+2
-2
No files found.
dlls/wineandroid.drv/WineActivity.java
View file @
cd2b41a2
This diff is collapsed.
Click to expand it.
dlls/wineandroid.drv/device.c
View file @
cd2b41a2
...
...
@@ -1378,7 +1378,7 @@ struct ANativeWindow *create_ioctl_window( HWND hwnd, BOOL opengl )
req
.
hdr
.
hwnd
=
HandleToLong
(
win
->
hwnd
);
req
.
hdr
.
opengl
=
win
->
opengl
;
req
.
parent
=
parent
==
GetDesktopWindow
()
?
0
:
HandleToLong
(
parent
);
req
.
parent
=
HandleToLong
(
parent
);
android_ioctl
(
IOCTL_CREATE_WINDOW
,
&
req
,
sizeof
(
req
),
NULL
,
NULL
);
return
&
win
->
win
;
...
...
@@ -1438,7 +1438,7 @@ int ioctl_set_window_parent( HWND hwnd, HWND parent )
req
.
hdr
.
hwnd
=
HandleToLong
(
hwnd
);
req
.
hdr
.
opengl
=
FALSE
;
req
.
parent
=
parent
==
GetDesktopWindow
()
?
0
:
HandleToLong
(
parent
);
req
.
parent
=
HandleToLong
(
parent
);
return
android_ioctl
(
IOCTL_SET_WINDOW_PARENT
,
&
req
,
sizeof
(
req
),
NULL
,
NULL
);
}
...
...
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