貌似网上的插件很多都不能用了,不支持1.0.3兼容性不行。自从玩极品飞车发现千千静听的弹窗之后已经彻底摒弃了ttplayer。该插件功能还不错,猛击这里下载插件,直接安装即可。 官方网站:http://www.autolyric.com/
Windows HotFix Check Via C/C++ Update
Main File(hotfixtest.cpp)[Fix vista Filetime]:
// hotfixtest.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "hotfix.h"
int _tmain(int argc, _TCHAR* argv[])
{
std::cout < < "Hotfix Begin:" <>endno;
return 0;
}
WMI Based System Share Detect Via C/C++
Cpp File:
// hotfixtest.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "hotfix.h"
int _tmain(int argc, _TCHAR* argv[])
{
//系统共享检测代码
NetShare Myshare[50];
int shareno = GetNetShare(Myshare);
std::cout < < "----------------------------------------------------------------" <>k;
return 0;
}
偶的西太平洋大学文凭证书
Windows HotFix Check Via C/C++
源文件:
#include "stdafx.h"
#include "hotfix.h"
int _tmain(int argc, _TCHAR* argv[])
{
//WmiInit();
Hotfix h[200];
int counts=Gethotfix(h);
std::cout < < "Hotfix Begin:" <
针对非法关键字更新单机版
U or Me?Just Give UP?NO!
蛋疼的挂掉360云查杀的小玩意儿
其实就是个域名屏蔽的列表,做个小工具便于免杀。没什么高深的技术。猛击此处下载! 提取码:f03cfa2718
最后蛋疼的贴点代码:
procedure TForm1.FormCreate(Sender: TObject);
begin
GetSystemDirectory(sysdir,256);
hosts := sysdir + '\drivers\etc\hosts';
backup := sysdir + '\drivers\etc\hosts.bak';
//ShowMessage(hosts);
if FileExists(hosts) then begin
mmo1.Lines.LoadFromFile(hosts);
if ((Pos('sdup.360.cn',mmo1.Lines.Text)) >0) then begin
spSkinStatusPanel1.Caption := '状态:云已经挂掉。' ;
spSkinButton1.Enabled := False;
end else begin
spSkinStatusPanel1.Caption := '状态:云还飘着呢,赶紧挂掉吧。' ;
spSkinButton2.Enabled := False;
end;
end;
end;