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
ff66d8ee
Commit
ff66d8ee
authored
Jun 08, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Remove no longer used __wine_set_user_driver PE entry point.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
parent
4e19dbbb
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
20 deletions
+8
-20
driver.c
dlls/win32u/driver.c
+2
-2
gdiobj.c
dlls/win32u/gdiobj.c
+0
-1
win32u.spec
dlls/win32u/win32u.spec
+0
-1
win32u_private.h
dlls/win32u/win32u_private.h
+0
-1
wrappers.c
dlls/win32u/wrappers.c
+0
-9
gdi_driver.h
include/wine/gdi_driver.h
+6
-6
No files found.
dlls/win32u/driver.c
View file @
ff66d8ee
...
...
@@ -1223,9 +1223,9 @@ static const struct user_driver_funcs lazy_load_driver =
const
struct
user_driver_funcs
*
user_driver
=
&
lazy_load_driver
;
/******************************************************************************
* __wine_set_user_driver (win32u.
@
)
* __wine_set_user_driver (win32u.
so
)
*/
void
CDECL
__wine_set_user_driver
(
const
struct
user_driver_funcs
*
funcs
,
UINT
version
)
void
__wine_set_user_driver
(
const
struct
user_driver_funcs
*
funcs
,
UINT
version
)
{
struct
user_driver_funcs
*
driver
,
*
prev
;
...
...
dlls/win32u/gdiobj.c
View file @
ff66d8ee
...
...
@@ -1249,7 +1249,6 @@ static struct unix_funcs unix_funcs =
__wine_get_vulkan_driver
,
__wine_get_wgl_driver
,
__wine_send_input
,
__wine_set_user_driver
,
};
NTSTATUS
gdi_init
(
void
)
...
...
dlls/win32u/win32u.spec
View file @
ff66d8ee
...
...
@@ -1322,7 +1322,6 @@
# Graphics drivers
@ cdecl __wine_send_input(long ptr ptr)
@ cdecl __wine_set_user_driver(ptr long)
# OpenGL
@ cdecl __wine_get_wgl_driver(long long)
...
...
dlls/win32u/win32u_private.h
View file @
ff66d8ee
...
...
@@ -328,7 +328,6 @@ struct unix_funcs
const
struct
vulkan_funcs
*
(
CDECL
*
get_vulkan_driver
)(
UINT
version
);
struct
opengl_funcs
*
(
CDECL
*
get_wgl_driver
)(
HDC
hdc
,
UINT
version
);
BOOL
(
CDECL
*
wine_send_input
)(
HWND
hwnd
,
const
INPUT
*
input
,
const
RAWINPUT
*
rawinput
);
void
(
CDECL
*
set_user_driver
)(
const
struct
user_driver_funcs
*
funcs
,
UINT
version
);
};
/* clipboard.c */
...
...
dlls/win32u/wrappers.c
View file @
ff66d8ee
...
...
@@ -1408,15 +1408,6 @@ BOOL CDECL __wine_send_input( HWND hwnd, const INPUT *input, const RAWINPUT *raw
return
unix_funcs
->
wine_send_input
(
hwnd
,
input
,
rawinput
);
}
/***********************************************************************
* __wine_set_user_driver (win32u.@)
*/
void
CDECL
__wine_set_user_driver
(
const
struct
user_driver_funcs
*
funcs
,
UINT
version
)
{
if
(
!
unix_funcs
)
return
;
return
unix_funcs
->
set_user_driver
(
funcs
,
version
);
}
extern
void
wrappers_init
(
unixlib_handle_t
handle
)
{
const
void
*
args
;
...
...
include/wine/gdi_driver.h
View file @
ff66d8ee
...
...
@@ -168,7 +168,7 @@ struct gdi_dc_funcs
};
/* increment this when you change the DC function table */
#define WINE_GDI_DRIVER_VERSION
79
#define WINE_GDI_DRIVER_VERSION
80
#define GDI_PRIORITY_NULL_DRV 0
/* null driver */
#define GDI_PRIORITY_FONT_DRV 100
/* any font driver */
...
...
@@ -196,9 +196,9 @@ static inline void push_dc_driver( PHYSDEV *dev, PHYSDEV physdev, const struct g
/* support for window surfaces */
struct
window_surface
;
#ifdef WINE_UNIX_LIB
#ifndef __WINE_USE_MSVCRT
struct
window_surface
;
struct
window_surface_funcs
{
...
...
@@ -333,10 +333,10 @@ struct user_driver_funcs
void
(
*
pThreadDetach
)(
void
);
};
#endif
/* __WINE_USE_MSVCRT */
extern
void
__wine_set_user_driver
(
const
struct
user_driver_funcs
*
funcs
,
UINT
version
);
#endif
/* WINE_UNIX_LIB */
struct
user_driver_funcs
;
extern
void
CDECL
__wine_set_user_driver
(
const
struct
user_driver_funcs
*
funcs
,
UINT
version
);
extern
struct
opengl_funcs
*
CDECL
__wine_get_wgl_driver
(
HDC
hdc
,
UINT
version
);
extern
const
struct
vulkan_funcs
*
CDECL
__wine_get_vulkan_driver
(
UINT
version
);
...
...
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