Re: mshtml: Don't use WINAPI for assembly functions to avoid linker warnings on mingw

2011-12-07 Thread Jacek Caban
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*); \ [...]

Re: mshtml: Don't use WINAPI for assembly functions to avoid linker warnings on mingw

2011-12-07 Thread Francois Gouget
> #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