Commit 3f2b2d5e authored by Alexandre Julliard's avatar Alexandre Julliard

Work-around for gcc bug.

parent a9d3fab1
......@@ -156,6 +156,8 @@ static inline void RELAY_PrintArgs( int *args, int nb_args, unsigned int typemas
}
typedef LONGLONG WINAPI (*LONGLONG_FARPROC)();
/***********************************************************************
* RELAY_CallFrom32
*
......@@ -234,7 +236,7 @@ static LONGLONG RELAY_CallFrom32( int ret_addr, ... )
}
else /* stdcall */
{
LONGLONG (WINAPI *func)() = relay->orig;
LONGLONG_FARPROC func = relay->orig;
switch(nb_args)
{
case 0: ret = func(); break;
......
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