汇编高手看过来
谁给我一段完整的弹出网页比如打开百度的 汇编代码到用的时候可以调用就可以了。 char open="open";
char url[]="http://www.baidu.com";
__asm
{
push SW_SHOW;
push NULL;
push NULL;
lea eax,url;
push eax;
lea eax,open;
push eax;
push NULL;
call dword ptr;
} push 5
push 0
push 0
push "open"->Address
push "URL"->Address
push 0
call dword ptr 字符串自己设定API的地址要用输入表里面的,如果输入表没有就用LoadPE或GetProcAddress获取 非常感谢热心的Luckly如果我是版主的话给你飘云币 pyg的热心人真不少
页:
[1]