rpcrt4: Add appropriate stdcall decorations to assembly functions.

This commit is contained in:
Alexandre Julliard 2009-06-14 15:34:24 +02:00
parent eb08df3a90
commit f2d65b5563
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ struct thunk {
extern void call_stubless_func(void);
__ASM_GLOBAL_FUNC(call_stubless_func,
"pushl %esp\n\t" /* pointer to index */
"call " __ASM_NAME("ObjectStubless") "\n\t"
"call " __ASM_NAME("ObjectStubless") __ASM_STDCALL(4) "\n\t"
"popl %edx\n\t" /* args size */
"movl (%esp),%ecx\n\t" /* return address */
"addl %edx,%esp\n\t"