Commit 65835e4b authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

win32u: Remove __wine_get_wgl_driver PE entry point.

parent b81a5718
......@@ -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,
};
......
......@@ -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)
......
......@@ -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 );
};
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment