Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
65835e4b
Commit
65835e4b
authored
Nov 22, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 23, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Remove __wine_get_wgl_driver PE entry point.
parent
b81a5718
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
11 deletions
+0
-11
gdiobj.c
dlls/win32u/gdiobj.c
+0
-1
win32u.spec
dlls/win32u/win32u.spec
+0
-3
win32u_private.h
dlls/win32u/win32u_private.h
+0
-1
wrappers.c
dlls/win32u/wrappers.c
+0
-6
No files found.
dlls/win32u/gdiobj.c
View file @
65835e4b
...
...
@@ -1149,7 +1149,6 @@ static struct unix_funcs unix_funcs =
__wine_get_brush_bitmap_info
,
__wine_get_file_outline_text_metric
,
__wine_get_icm_profile
,
__wine_get_wgl_driver
,
__wine_send_input
,
};
...
...
dlls/win32u/win32u.spec
View file @
65835e4b
...
...
@@ -1323,9 +1323,6 @@
# Graphics drivers
@ cdecl __wine_send_input(long ptr ptr)
# OpenGL
@ cdecl __wine_get_wgl_driver(long long)
# gdi32
@ stdcall SetDIBits(long long long long ptr ptr long)
@ cdecl __wine_get_brush_bitmap_info(long ptr ptr ptr)
...
...
dlls/win32u/win32u_private.h
View file @
65835e4b
...
...
@@ -207,7 +207,6 @@ struct unix_funcs
BOOL
(
CDECL
*
get_brush_bitmap_info
)(
HBRUSH
handle
,
BITMAPINFO
*
info
,
void
*
bits
,
UINT
*
usage
);
BOOL
(
CDECL
*
get_file_outline_text_metric
)(
const
WCHAR
*
path
,
OUTLINETEXTMETRICW
*
otm
);
BOOL
(
CDECL
*
get_icm_profile
)(
HDC
hdc
,
BOOL
allow_default
,
DWORD
*
size
,
WCHAR
*
filename
);
struct
opengl_funcs
*
(
CDECL
*
get_wgl_driver
)(
HDC
hdc
,
UINT
version
);
BOOL
(
CDECL
*
wine_send_input
)(
HWND
hwnd
,
const
INPUT
*
input
,
const
RAWINPUT
*
rawinput
);
};
...
...
dlls/win32u/wrappers.c
View file @
65835e4b
...
...
@@ -798,12 +798,6 @@ BOOL CDECL __wine_get_file_outline_text_metric( const WCHAR *path, OUTLINETEXTME
return
unix_funcs
->
get_file_outline_text_metric
(
path
,
otm
);
}
struct
opengl_funcs
*
CDECL
__wine_get_wgl_driver
(
HDC
hdc
,
UINT
version
)
{
if
(
!
unix_funcs
)
return
NULL
;
return
unix_funcs
->
get_wgl_driver
(
hdc
,
version
);
}
BOOL
CDECL
__wine_send_input
(
HWND
hwnd
,
const
INPUT
*
input
,
const
RAWINPUT
*
rawinput
)
{
if
(
!
unix_funcs
)
return
FALSE
;
...
...
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