-
VAD
在详细研究了静音检测算法的基础上,利用C语言编写程序实现了该算法。(Based on the detailed studying of the mute detection,adopting the C language program to inplementing the algorithm.)
- 2009-07-19 23:40:17下载
- 积分:1
-
Attributes
说明: 还是关于C++的,可以看一下请审阅,谢谢站长(Or on the C++, you can look at your review, thank you webmaster)
- 2011-03-12 18:25:39下载
- 积分:1
-
CodeManage
说明: 个人代码库,VC6+ACCESS。增删改查,最小化托盘等。(Personal code library, VC6+ ACCESS. Additions and deletions to the investigation, the smallest of the tray.)
- 2011-02-28 16:47:08下载
- 积分:1
-
文档加法器
这是一个VC++环境下的文档加法器,可以用来计算各种运算。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2022-01-22 14:06:47下载
- 积分:1
-
seed-dvs6446
说明: 合众达seed-dvs6446 用户指南,包括开发板的介绍和各个部分的功能介绍,PDF格式。(Triangle of seed-dvs6446 user guide, including the development board of the introduction and description of each part of the function, PDF format.)
- 2011-03-17 08:56:00下载
- 积分:1
-
howtosolveit
HOW TO SOLVE IT是一本介绍有关计算机基本思想概念的书籍(HOW TO SOLVE IT)
- 2010-11-18 01:17:28下载
- 积分:1
-
CreatePasswordFile
说明: 创建密码字典文件,数字,字母,VC++编写(Create a password dictionary file, numbers, letters, VC++ written)
- 2011-03-01 13:23:11下载
- 积分:1
-
VC 创建内存映像文件对象并使用
VC++6.0 创建内存映像文件对象并使用,实现了写入内存映射文件和从内存映射文件中读取数据,比如将数据从内存映射文件读出,实现方法如下:
void CFileMapTransTxtDlg::OnRead()
{
//创建内存映像对象
HANDLE hMapping;
LPSTR lpData;
hMapping=CreateFileMapping((HANDLE)0xFFFFFFFF,NULL,PAGE_READWRITE,0,0x100,"MYSHARE");
if(hMapping==NULL)
{
AfxMessageBox("CreateFileMapping() failed.");
return;
}
//将文件的视图映射到一个进程的地址空间上,返回LPVOID类型的内存指针
lpData=(LPSTR)MapViewOfFile(hMapping,FILE_MAP_ALL_ACCESS,0,0,0);
if(lpData==NULL)
{
AfxMessageBox("MapViewOfFile() failed.");
return;
}
//给这段映像内存的数据赋给本地变量
m_strDest.Format("%s",lpData);
//释放映像内存
UnmapViewOfFile(lpData);
//更新数据
UpdateData(FALSE);
}
- 2022-05-17 02:25:47下载
- 积分:1
-
C4
说明: 这是一本很好的语言程序设计电子书,特别拿出来与大家共享。
第四部分(This is a very good program design language e-books, especially out to share with you. Part IV)
- 2008-10-17 21:57:31下载
- 积分:1
-
driverDDKFloowMe01
黑客防线:windows 驱动开发视频培训教程 01(Hacker Defense: windows-Driven Development Video Training Tutorial 01)
- 2010-01-21 09:57:43下载
- 积分:1