Commit a3b7030e authored by Alam Arias's avatar Alam Arias Committed by Alexandre Julliard

include: Modify UNREFERENCED macros to cast to void.

parent df51bbf4
......@@ -1470,9 +1470,9 @@ typedef CONTEXT *PCONTEXT;
#define LOCALE_USER_DEFAULT (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
#define LOCALE_NEUTRAL (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
#define UNREFERENCED_PARAMETER(u) (u)
#define DBG_UNREFERENCED_PARAMETER(u) (u)
#define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (u)
#define UNREFERENCED_PARAMETER(u) (void)(u)
#define DBG_UNREFERENCED_PARAMETER(u) (void)(u)
#define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (void)(u)
#define LANG_NEUTRAL 0x00
#define LANG_INVARIANT 0x7f
......
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