* Sync to recent trunk (r52563).
[reactos.git] / dll / win32 / rpcrt4 / msvc.S
1
2 #include <asm.inc>
3
4 .code32
5
6 EXTERN _ObjectStubless@4:PROC
7
8 PUBLIC _call_stubless_func
9 _call_stubless_func:
10
11 push esp /* pointer to index */
12 call _ObjectStubless@4
13 pop edx /* args size */
14 mov ecx, [esp] /* return address */
15 add esp, edx
16 jmp ecx
17
18 END