2010年4月11日

CreateFile函数详解

摘要: CreateFile The CreateFile function creates or opens the following objects and returns a handle that can be used to accessthe object:filespipesmailslotscommunications resourcesdisk devices(Windows NT only)consolesdirectories(open only) CreateFile 函数创建或打开下列对象,并返回一个可以用来访问这些对象的句柄。 文件 pipes 邮槽 通信资源 磁盘 阅读全文

posted @ 2010-04-11 19:46 zimmerk 阅读(747) 评论(0) 推荐(0)

进位专家(含免注册方法)

摘要: 进位专家5dai出的东西 虽然要注册 但我发现,只要机器码留空,再按登录可以直接进去 下载地址:http://download.csdn.net/source/2227540 阅读全文

posted @ 2010-04-11 13:56 zimmerk 阅读(460) 评论(0) 推荐(0)

DELPHI加密字串(异或运算加密)

摘要: 这个本来我我在DELPHI盒子看到的,后来我对其作了一点修改,这里上全部代码,可以直接用首先有两个自定的转换函数:function myStrToHex(s:string):string; //字串转16进制var TmpStr:string; i:integer;begin TmpStr:=''; for i:=1 to Length(s)do TmpStr:=TmpStr+IntToHex(ord(s[i]),2); Result:=TmpStr;end;function myHexToStr(S:string):string; //16进制转字串var HexS,TmpStr 阅读全文

posted @ 2010-04-11 12:57 zimmerk 阅读(2674) 评论(0) 推荐(0)

导航