Commit 3284d17e authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

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

parent 9749de29
......@@ -88,7 +88,7 @@ static HRESULT WINAPI wrapper_Release(IUnknown *iface)
#ifdef __i386__
#define DEFINE_WRAPPER_FUNC(n, off, x) \
HRESULT WINAPI wrapper_func_##n(IUnknown*); \
HRESULT wrapper_func_##n(IUnknown*); \
__ASM_GLOBAL_FUNC(wrapper_func_##n, \
"movl 4(%esp), %eax\n\t" \
"movl 4(%eax), %eax\n\t" \
......
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