honghe 发表于 2008-9-15 15:56:39

汇编高手看过来

谁给我一段完整的弹出网页比如打开百度的 汇编代码
到用的时候可以调用就可以了。

Luckly 发表于 2008-9-15 16:44:04

        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;
               
               
        }

Luckly 发表于 2008-9-15 16:50:03

push    5
push    0
push    0
push    "open"->Address
push    "URL"->Address
push    0
call    dword ptr 字符串自己设定API的地址要用输入表里面的,如果输入表没有就用LoadPE或GetProcAddress获取

honghe 发表于 2008-9-15 17:28:17

非常感谢热心的Luckly如果我是版主的话给你飘云币

hhmmys 发表于 2008-9-15 18:21:04

pyg的热心人真不少
页: [1]
查看完整版本: 汇编高手看过来