在OD中用注入工具代码  
mov edx,00aac1b0mov edx,[edx]mov edx,[edx+01c]mov edx,[edx+24]mov edx,[edx+0ae4]mov edx,[edx+0c]mov edx,[edx+0]mov eax,[edx]mov ecx,edxcall [eax+8]复制代码上面能实现调用但是我用
C++编写的时候确也能通过 但是调用时候确出错了
  __asm  {mov edx,0xaac1b0  mov eax,[edx]  mov eax,[eax+0x1c]  mov edx,[eax+24]  mov eax,[eax+0xae4]  mov eax,[eax+0xc]  mov eax,[eax+0]  mov eax,[eax]  mov ecx,eax  call [eax+8]  }