-
IOCP-Basic
IOCP基本原理介绍,主要介绍了如何使用IOCP进行开发。(Introduce the basic principles of IOCP, mainly on how to use IOCP for development.)
- 2011-04-20 10:13:01下载
- 积分:1
-
openGL_keyboard
读入obj文件,点击鼠标左键实现转动,键盘按钮实现移动,放大,缩小等功能(Read obj file, click on the left mouse button to achieve rotation mobile keypad buttons, zoom and other functions)
- 2014-12-28 19:59:37下载
- 积分:1
-
rainbowcrack-1.2-src
Rainbow加密算法的Crack程序,支持字典攻击。(Rainbow Crack Encryption Algorithm procedures, support dictionary attacks.)
- 2006-06-08 12:51:22下载
- 积分:1
-
oi
说明: 逻辑电平接口设计规范逻辑电平接口设计规范(Logic level interface design specification
Logic level interface design specification
)
- 2013-11-06 11:15:37下载
- 积分:1
-
.net/C#万能工具包
项目基于.NET 4.5构建,语法版本C#6.0,包含日常编程多数的常用封装,可以说是一个万能框架,能够用于任何基于.NET平台的项目当中。
功能主要覆盖:
数据库操作:内存表操作、关系实体映射等;
日期时间常用操作:农历操作、时间戳操作,时分秒转换等;
文件操作:大文件操作、文件压缩与解压、ini配置文件操作;
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-02-02 00:43:26下载
- 积分:1
-
线性表的顺序存储
#ifndef __MY_SEQLIST_H__
#define __MY_SEQLIST_H__
typedef void SeqList;
typedef void SeqListNode;
//链表 创建
SeqList* SeqList_Create(int capacity);
//链表 销毁
void SeqList_Destroy(SeqList* list);
//链表 清空
void SeqList_Clear(SeqList* list);
//链表 长度
int SeqList_Length(SeqList* list);
//链表 容量
int SeqList_Capacity(SeqList* list);
//链表 在某一个位置 插入元素
int SeqList_Insert(SeqList* list, SeqListNode* node, int pos);
//获取某一个位置的链表结点
SeqListNode* SeqList_Get(SeqList* list, int pos);
//删除某一个位置的结点
SeqListNode* SeqList_Delete(SeqList* list, int pos);
#endif //__MY_SEQLIST_H__
- 2022-09-14 04:45:03下载
- 积分:1
-
inpaiting_code_i_c
采取逆滤波和维纳滤波两种图像恢复算法对退化图像的恢复实现过程。
(taken inverse filter and two Wiener filtering algorithm to image restoration of degraded images to achieve the restoration process.)
- 2007-06-16 14:37:17下载
- 积分:1
-
icePubDll
获取计算机硬件信息的动态链接库,CPU序列号,硬盘序列号,MAC地址等信息
例程:
void gethardinfo()
{
QString str1="";
char buff[1024];
char buff2[1024];
char temp;
typedef int (WINAPI ICEPUB_MACHINEGETINFO)(int typeFlag,char *strInfo);
ICEPUB_MACHINEGETINFO *icePub_machineGetInfo = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_machineGetInfo = (ICEPUB_MACHINEGETINFO *)GetProcAddress(hDLLDrv, "icePub_machineGetInfo");
}
icePub_machineGetInfo(3,buff);
str1=buff;
int i=0;
int n=0;
n=str1.length();
qDebug()<<n;
for(i=0;i<n;i+=2)
{
temp=buff[i];
buff2[i+1]=temp;
buff2[i]=buff[i+1];
}
QString str2=buff2;
qDebug()<<buff2;
qDebug()<<str2;
}(Access to the computer hardware information dynamic link library, CPU serial number, hard disk serial number, MAC address and other information)
- 2017-12-28 11:45:08下载
- 积分:1
-
播放音乐
基于C51单片机的播放音乐程序,可用于制作MP3。
有助于学习单片机原理,与数字信号读取过程。
- 2022-07-26 12:46:38下载
- 积分:1
-
C_API_Manul
主要是讲解windows下编程的使用和方法,以及在实际中的高级应用。(Under the program mainly to explain the use of windows and methods, as well as advanced applications in practice.)
- 2010-05-17 23:13:44下载
- 积分:1