Skip to content
Snippets Groups Projects
Commit 2f46e4bb authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

include: Apply LONG_PTR format hack only to Wine build.

parent 114c0477
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ typedef unsigned __int64 ULONG_PTR, *PULONG_PTR;
typedef int INT_PTR, *PINT_PTR;
typedef unsigned int UINT_PTR, *PUINT_PTR;
#if defined(__clang__) && defined(__MINGW32__) /* llvm-mingw warns about long type in %I formats */
#if defined(__WINESRC__) && defined(__clang__) && defined(__MINGW32__) /* llvm-mingw warns about long type in %I formats */
typedef int LONG_PTR, *PLONG_PTR;
typedef unsigned int ULONG_PTR, *PULONG_PTR;
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment