Commit 402d50d5 authored by Alexandre Julliard's avatar Alexandre Julliard

include: Use proper dllimports for gdi32 functions.

parent a1f0d535
EXTRADEFS = -DWINGDIAPI=
MODULE = win32u.dll
UNIXLIB = win32u.so
IMPORTLIB = win32u
......
......@@ -24,16 +24,20 @@
extern "C" {
#endif
#ifndef WINGDIAPI
#if defined(_GDI32_) || defined(WINE_UNIX_LIB)
#define WINGDIAPI
#else
#define WINGDIAPI DECLSPEC_HIDDEN
#define WINGDIAPI DECLSPEC_IMPORT
#endif
#endif
#ifndef WGLAPI
#ifdef _OPENGL32_
#define WGLAPI
#else
#define WGLAPI DECLSPEC_HIDDEN
#define WGLAPI DECLSPEC_IMPORT
#endif
#endif
typedef struct _ABCFLOAT {
......
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