On 12/07/11 09:01, Francois Gouget wrote:
#ifdef __i386__
#define DEFINE_WRAPPER_FUNC(n, off, x) \
HRESULT wrapper_func_##n(IUnknown*); \
[...]
#elif defined(__x86_64__)
#define DEFINE_WRAPPER_FUNC(n, x, off) \
HRESULT WINAPI wrapper_func_##n(IUnknown*); \
[...]
> #ifdef __i386__
>
> #define DEFINE_WRAPPER_FUNC(n, off, x) \
> HRESULT wrapper_func_##n(IUnknown*); \
[...]
> #elif defined(__x86_64__)
>
> #define DEFINE_WRAPPER_FUNC(n, x, off) \
> HRESULT WINAPI wrapper_func_##n(IUnknown*); \
[...]
> #else
>
> #define DEFINE_WRAPPER