Commit 47ab4904 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

gdi32: Avoid using GCC's typeof extension.

parent b11f43d5
...@@ -61,9 +61,9 @@ static CRITICAL_SECTION_DEBUG critsect_debug = ...@@ -61,9 +61,9 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
}; };
static CRITICAL_SECTION driver_section = { &critsect_debug, -1, 0, 0, 0, 0 }; static CRITICAL_SECTION driver_section = { &critsect_debug, -1, 0, 0, 0, 0 };
static typeof(GetDesktopWindow) *pGetDesktopWindow; static HWND (WINAPI *pGetDesktopWindow)(void);
static typeof(GetSystemMetrics) *pGetSystemMetrics; static INT (WINAPI *pGetSystemMetrics)(INT);
static typeof(SetThreadDpiAwarenessContext) *pSetThreadDpiAwarenessContext; static DPI_AWARENESS_CONTEXT (WINAPI *pSetThreadDpiAwarenessContext)(DPI_AWARENESS_CONTEXT);
/********************************************************************** /**********************************************************************
* create_driver * create_driver
......
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