mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
gdi32: Avoid using GCC's typeof extension.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b11f43d568
commit
47ab490427
1 changed files with 3 additions and 3 deletions
|
@ -61,9 +61,9 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
|
|||
};
|
||||
static CRITICAL_SECTION driver_section = { &critsect_debug, -1, 0, 0, 0, 0 };
|
||||
|
||||
static typeof(GetDesktopWindow) *pGetDesktopWindow;
|
||||
static typeof(GetSystemMetrics) *pGetSystemMetrics;
|
||||
static typeof(SetThreadDpiAwarenessContext) *pSetThreadDpiAwarenessContext;
|
||||
static HWND (WINAPI *pGetDesktopWindow)(void);
|
||||
static INT (WINAPI *pGetSystemMetrics)(INT);
|
||||
static DPI_AWARENESS_CONTEXT (WINAPI *pSetThreadDpiAwarenessContext)(DPI_AWARENESS_CONTEXT);
|
||||
|
||||
/**********************************************************************
|
||||
* create_driver
|
||||
|
|
Loading…
Reference in a new issue