0
/*
 * Wrapper from
 * int func(int a, int b, int c, unsigned int d, signed int e);
 * to
 * int __usercall func<eax>(int a<eax>, int b<ecx>, int c, unsigned int d, signed int e);
 */
int func(int a, int b, int c, unsigned int d, signed int e)
{
    __asm
    {       
        push e
        push d
        push c
        mov ecx, b
        mov eax, a
        call __usercall_func // access violation somewhere inside here
        add esp, 12
    }
}
4

1 回答 1

1

您不能ret从内联 asm 块中执行自己,因为您不知道外部函数对堆栈指针做了什么。相反,您需要安排汇编代码将返回值留在局部变量中,包装函数可以使用正常的 Creturn语句返回该变量。

您可能还需要在 return from 之后修复堆栈指针__usercall_func,除非它使用不正当的调用约定,将自己的参数从堆栈中弹出。

于 2010-11-05T02:11:31.700 回答