1,谁知道_asm和__asm的区别??
2,为什么我写的函数在Call后要修改esp
   例: lea  eax, iCall  //参数
push eax
call lpAddr  //C++函数
add esp,4//////////////////必确有!!!!!
  而我看到这样一段代码:
          _asm
{
mov eax, hWnd;
push eax;
call lpAddr;(注:dll中的一个函数)
}
 也能正确执行。谁能给出解释??????????