Welcome![Sign In][Sign Up]
Location:
Search - sdk 7.3

Search list

[Video CaptureHik-400xxSDK-2

Description: 服务端SDK2版本:7.6.12.3550 客户端SDK2版本:7.3.6.2550 简介: SDK-2 开发包可快速开发基于杭州海康威视系统视频采集卡(Hikvision DS-40xxHC DS-40xxHC+ DS-40xxMD SDK)的视频监控类应用程序。 本开发包在海康视频采集卡二次开发包的基础上进一步封装大量底层细节,让开发者在程序中控制采集卡简单到只需调用一个函数,完成强大功能只需一句代码即可快速实现,真正达到了开发高效、稳定、简单、快速的效果,本开发包不仅仅适应于初学者,因其强大的开发包接口同样也适应于专业系统的开发。
Platform: | Size: 4395406 | Author: zhangyu | Hits:

[Books加密解密技术内幕

Description: 加密解密技术内幕 第1章 PE文件格式深入研究 1.1 PE文件格式格式纵览 1.1.1 区块(Section) 1.1.2 相对虚拟地址(Relative Virtual Addresses) 1.1.3 数据目录 1.1.4 输入函数(Importing Functions) 1.2 PE文件结构 1.2.1 The MS-DOS头部 1.2.2 IMAGE_NT_HEADERS头部 1.2.3 区块表(The Section Table) 1.2.4 各种块(Sections)的描述 1.2.5 输出表 1.2.6 输出转向(Export Forwarding) 1.2.7 输入表 1.2.8 绑定输入(Bound import) 1.2.9 延迟装入数据(Delayload Data) 1.2.10 资源 1.2.11 基址重定位(Base Relocations) 1.2.12 调试目录(DebugDirectory) 1.2.13 NET头部 1.2.14 TLS初始化 1.2.15 程序异常数据 第2章 PE分析工具编写 2.1 文件格式检查 2.2 FileHeader和OptionalHeader内容的读取 2.3 得到数据目录(Data Dircetory)信息 2.4 得到块表(SectionTable)信息 2.5 得到输出表(ExportTable)信息 2.6 得到输入表(ImportTable)信息 第3章 Win32 调试API 3.1 Win32调试API原理 3.1.1 调试相关函数简要说明 3.1.2 调试事件 3.1.3 如何在调试时创建并跟踪一个进程 3.1.4 最主要的循环体 3.1.5 如何处理调试事件 3.1.6 线程环境详解 3.1.7 如何在另一个进程中注入代码 3.2 利用调试API编写脱壳机 3.2.1 tElock 0.98脱壳简介 3.2.2 脱壳机的编写 3.3 利用调试API制作内存补丁 3.3.1 跨进程内存存取机制 3.3.2 Debug API机制 第4章 Windows下的异常处理 4.1 基本概念 4.1.1 Windows下的软件异常 4.1.2 未公开的可靠吗 4.2 结构化异常处理(SEH) 4.2.1 异常处理的基本过程 4.2.2 SEH的分类 4.2.3 相关API 4.2.4 SEH相关数据结构 4.3 异常处理程序设计 4.3.1 顶层(top-level)异常处理 4.3.2 线程异常处理 4.3.3 异常处理的堆栈展开(Stack unwind) 4.3.4 异常处理程序设计中的几个注意事项: 4.4 SEH的简单应用 4.4.1 Win9x下利用SEH进ring0 4.4.2 利用SEH实现对自身的单步自跟踪 4.4.3 其它应用 4.5 系统背后的秘密 4.6 VC是如何封装系统提供的SEH机制的 4.6.1 扩展的EXCEPTION_REGISTRATION级相关结构 4.6.2 数据结构组织 4.7 Windows XP下的向量化异常处理(VEH) 第5章 软件加密技术 5.1 反调试技术(Anti-Debug) 5.1.1 句柄检测 5.1.2 SoftICE后门指令 5.1.3 int68子类型 5.1.4 ICECream子类型 5.1.5 判断NTICE服务是否运行 5.1.6 INT 1 检测 5.1.7 利用UnhandledExceptionFilter检测 5.1.8 INT 41子类型 5.2 反跟踪技术(Anti-Trace) 5.2.1 断点检测 5.2.2 利用SEH反跟踪 5.2.3 SMC技术实现 5.3 反加载技术(Anti-Loader) 5.3.1 利用TEB检测 5.3.2 利用IsDebuggerPresent函数检测 5.3.3 检查父进程 5.4 反DUMP技术(Anti-Dump) 5.5 文件完整性检验 5.5.1 CRC校验实现 5.5.2 校验和(Checksum) 5.5.3 内存映像校验 5.6 反监视技术(Anti-Monitor) 5.6.1 窗口方法检测 5.6.2 句柄检测 5.7 反静态分析技术 5.7.1 扰乱汇编代码 5.7.2 花指令 5.7.3 信息隐藏 5.8 代码与数据结合技术 5.9 软件保护的若干忠告 第6章 加壳软件编写 6.1 外壳编写基础 6.1.1 判断文件是否是PE格式的EXE文件 6.1.2 文件基本数据的读入 6.1.3 额外数据保留 6.1.4 重定位数据的去除 6.1.5 文件的压缩 6.1.6 资源区块的处理 6.1.7 区块的融合 6.1.8 输入表的处理 6.1.9 外壳部分的编写 6.1.10 将外壳部分添加至原程序 6.1.10 小结 6.2 加壳程序综合运用的实例 6.2.1 程序简介 6.2.2 加壳子程序(WJQ_ShellBegin()) 6.2.3 PE外壳程序 6.2.4 加进Anti技术 6.2.5 通过外壳修改被加壳PE 6.2.6 VC++调用汇编子程序 第7章 如何让壳与程序融为一体 7.1 序 7.1.1 为何需要壳和程序一体化 7.1.2 为阅读此章节需要的知识 7.1.3 基于此章节用的的例子程序说明 7.2 欺骗检查壳的工具 7.2.1 fi是如何检查壳的 7.2.2 欺骗fi 7.3 判断自己是否给脱壳了 7.3.1 判断文件尺寸 7.3.2 检查标记 7.3.3 外部检测(使用dll) 7.3.4 hook 相关的api(防止loader和调试api) 7.4 使用sdk把程序和壳溶为一体 7.4.1 sdk的意义 7.4.2 做一个带sdk的壳 7.5 后记:关于壳和程序的思考 第8章 Visual Basic 6 逆向工程 8.1 简介 8.2 P-code传奇 8.3 VB编译奥秘 8.4 VB与COM 8.5 VB可执行程序结构研究 8.6 VB程序事件解读 8.7 VB程序图形界面(GUI)解读 8.8 VB程序执行代码研究 8.9 我们的工具 8.10 VB程序保护篇 附录A 在Visual C++中使用内联汇编 附录B 在Visual Basic中使用汇编
Platform: | Size: 1389111 | Author: vachel | Hits:

[mpeg mp3shitclass3

Description: 本类包是使用于ShitMP3 v1.08的内部核心类,提供如下功能:1.提取指定MP3文件ID3v1信息2.提取指定MP3文件ID3v2信息3.存储ID3v1信息给某个MP3文件4.存储ID3v2信息给某个MP3文件5.MP3文件名自动重命名6.重命名命名格式全自动生成7.大批量修改某个目录下的MP3文件名★8.最新版的ShitClass提供了对WMA文件的自定义修改功能类包包括类:CMP3.h 用户真正使用的MP3类的接口文件,提供了上述的7种功能的各种方便函数CMP3.cpp MP3类文件MP3类需要的支持类:CWma.h WMA文件信息提取与写入类CWma.cppSManageFile.h 文件管理类,由张麟开发,有大量的文件的剪切,粘贴,复制,删除等各种各样的函数。SManageFile.cpp ID3.h 网友吴曜宏开发的MP3文件ID3v2信息提取类ID3.cpp类包支持:由于类包是在VC++环境中开发的,需要MFC类包的支持。★由于新版本的类包需要WMSDK的支持所以,在你编辑使用软件之前,请确认您的机器上有Windows Media Player SDK的支持。如果没有,您可以到:http://www.monocers.com/jon/shitmp3/WMFormatSDK.rar下载获得。使用CMP3类函数的时候,需要SManageFile类和CID3v2类的支持-in this package is used in the internal ShitMP3 v1.08 core category for the following functions : 1. Designated extract information ID3v1 MP3 files 2. MP3 files from designated three ID3v2 information. ID3v1 information stored MP3 files to a certain four. Information storage ID3v2 MP3 files to a five . MP3 files were automatically re-naming six. rename naming format Automatic Generation 7. change certain high-volume directory of MP3 files from People 8. the latest edition of the ShitClass provided by the WMA files from the revised definition of functional categories including packet categories : CMP3.h users actually use the MP3 category the interface file to provide the above functions of the seven convenient function CMP3.cpp MP3 MP3 category types of documents needed support categories
Platform: | Size: 124928 | Author: 小平 | Hits:

[OpenGL programopengl_mksw

Description: opengl做为一款强大的3D API,渲染速度快,效率高。可以为我们实现自己的3D世界。 本程序使用了glut库(下载到http://www.xmission.com/~nate/glut.html),他不仅包含了gl.h, glu.h glaux.h还扩充了一些其他高级的功能。所以在我们以后的程序中,只需包含glut.h头文件。 实现细节请下载源代码,熟悉opengl编程的朋友可以从代码中看出,在AX中实现opengl跟在普通应用程序中是一致的。 glut库的安装 目前的glut库是glut-3.7.6.包含glut.h,glut32.lib,glut32.dll 把glut.h放到 vc的include目录中 把glut32.lib放到vc的lib目录中 把glut32.dll放到system32下 对于vs.net include和lib在..\vc7\platformSDK下 参考资料 nehe.gamedev.net 特别经典的opengl教程 www.codeguru.com -opengl as one powerful 3D API, rendering speed, high efficiency. We can achieve our 3D world. The procedures for the use of a glut (download http://www.xmission.com/ ~ nate/glut.html), he embodies gl.h, glu.h glaux.h has also expanded the number of other senior function. So in our future proceedings, just include glut.h headers. Implementation details please download the source code, the programming opengl familiar friends can see from the code in AX achieve opengl application with the ordinary procedure is the same. Glut library installation for the current glut of glut- 3.7.6. Included glut.h, glut32.lib, glut32.dll put into vc glut.h include the directory into vc glut32.lib put the lib directory put into glut32.dll for system32 vs.net include and lib in .. \ vc7 \ platformSDK under s
Platform: | Size: 132096 | Author: 周立 | Hits:

[Graph programCDSDK

Description: Cannon CDSDK 7.3,Cannon 相机开发包. 尚未经过经过测试。 -Cannon CDSDK 7.3, Cannon Camera Development Kit. Has not been tested.
Platform: | Size: 1409024 | Author: 谢玉林 | Hits:

[Video CaptureHik-400xxSDK-2

Description: 服务端SDK2版本:7.6.12.3550 客户端SDK2版本:7.3.6.2550 简介: SDK-2 开发包可快速开发基于杭州海康威视系统视频采集卡(Hikvision DS-40xxHC DS-40xxHC+ DS-40xxMD SDK)的视频监控类应用程序。 本开发包在海康视频采集卡二次开发包的基础上进一步封装大量底层细节,让开发者在程序中控制采集卡简单到只需调用一个函数,完成强大功能只需一句代码即可快速实现,真正达到了开发高效、稳定、简单、快速的效果,本开发包不仅仅适应于初学者,因其强大的开发包接口同样也适应于专业系统的开发。-Server-side SDK2 version: 7.6.12.3550 client SDK2 version: 7.3.6.2550 Profile: SDK-2 development kit available for rapid development of systems based on the Hangzhou hikvision video capture card (Hikvision DS-40xxHC DS-40xxHC+ DS-40xxMD SDK) category of video surveillance applications. The development kit Haikang video capture cards in the secondary development package based on a large number of the bottom package details, allow developers to control the acquisition card program simple to simply call a function, the completion of the power of just one code can be quickly realize, the real reached a development of efficient, stable, simple, rapid results, the development kit is not suitable for beginners, because of its powerful development kit interface is also adapted to the professional system.
Platform: | Size: 4395008 | Author: zhangyu | Hits:

[Othergame

Description: 用VB编写DirectX7.0游戏   DirectX7.0终于出现了,同前面DirectX6相同,版本7也带了一个庞大(129M)的SDK开发库,同DirectX6 SDK库相比,DirectX7的SDK库提供了以下新的功能:   * 对于Visual Basic的支持。用户可以使用类库在Visual Basic环境下开发基于DirectX的程序。   * 提供更多DirectX3D立即模式(Immediate Mode)下的API函数,以支持DirectX7中新的3D特效,包括立体环境映射、顶点混合等。   * DirectMusic支持DownLoadable Sound Level 2标准。   * DirectInput支持8按键的游戏杆设备,同时支持Microsoft的力反馈摇杆。SDK库提供了读取力反馈效果文件的方法。同时提供了Force Editor程序来建立效果。   对于VB爱好者来说,新的SDK库终于提供了完整的对VB的支持,现在终于可以使用Visual Basic来编写DirectX的程序了。 -err
Platform: | Size: 35840 | Author: 江福利 | Hits:

[Windows DevelopCanonActFrm

Description: 佳能OCX源代码,Cannon CDSDK 7.3,Cannon 相机开发包. 尚未经过经过测试。-Canon OCX source code, Cannon CDSDK 7.3, Cannon Camera Development Kit. Has not been tested.
Platform: | Size: 3279872 | Author: winganson | Hits:

[JSP/JavaBS_SMS_SDK_V1.7.1215

Description: [SMS SDK V1.7 测试说明] 1)“接口库”为SDK库包其中: Release —— 发布的稳定库 Debug —— 为调试库 2)“演示代码”为测试代码目录。 [1] 测试代码中使用的库都是Release的版本。 [2] 如使用Debug库,需要设置环境变量GSMLIB_DEBUG等于2,则会在C:\下生成GSMModem.log文件。 若您在开发的过程中遇到问题,可以使用此方法获得GSMModem.log并发送给经销商,即可有 效的解决您的问题。 设置环境变量的方法: 我的电脑->属性->高级->环境变量->用户变量和系统变量->新建 变量名: GSMLIB_DEBUG 变量值: 2 3)执行测试: [1] C#/VB/VB6/C++/Delphi 直接找到exe可执行文件,即可运行测试程序; [2] JAVA测试: 可以修改一下test.bat文件,然后直接运行即可了。 需要修改以下内容: set Number=13681191399 接收的手机号码 set SN=ITIU-NWCJ-VCJD-WJDU 注册码 set JAVA_HOME=D:\JBuilder9\jdk1.4 JAVA环境 -JAVA_HOME=D:\JBuilder9\jdk1.4 JAVA环境
Platform: | Size: 6449152 | Author: my name | Hits:

[OtherCDSDK73

Description: 佳能数码相机 SDK 7.3 开发包 VC++代码 含英文说明文档-Canon Digital Camera SDK 7.3 SDK VC++ code containing the English documentation
Platform: | Size: 5112832 | Author: 炝炜 | Hits:

[2D GraphicSDLchinese

Description: 目录: 1. 作者介绍 2. SDL(Simple DirectMedia Layer) 1. SDL是什么? * SDL是一个自由的跨平台的多媒体开发包 * 适用于游戏 * 适用于游戏SDK * 适用于模拟器 * 适用于演示软件 * 适用于多媒体应用软件 3. SDL有哪些功能? * 视频 * 事件 * 音频 * CD音频 * 线程支持 * 定时器 * 和字节序(Endian)无关 -Contents: 1. The author 2. SDL (Simple DirectMedia Layer) 1. SDL what?* SDL is a free cross-platform multimedia development kit for games** applies to game emulator for SDK** applies to demonstration* applicable to multi-media software applications 3. SDL What are the functions?* video* event* audio* CD audio* threading support* Timer* and endianness (Endian) has nothing to do
Platform: | Size: 22528 | Author: zhangtairong | Hits:

[Delphi VCLVax_SIP_User_Agent_SDK_V3.0[7.0.3.4]

Description:
Platform: | Size: 6750208 | Author: hua | Hits:

[CSharpduideng_c

Description: 对等网络C#编写的源代码,《对等网络编程源代码》一书附带的光盘的C#源码-This file contains the information about running the C# version of the application. You must have the following Software installed on your machine in order to run this application. 1. Microsoft Visual Studio .NET Beta 2 2. Microsoft XML Parser 3.0 3. DirectX SDK 8.0* 4. Windows Media Encoder SDK 7.1* 5. Windows Media Player 7.0 or higher* 6. Windows 2000 Professional with IIS 5.0 7. SQL Server 2000 Setting up your Computer for Web server 1. You will need setup a website on your computer using IIS 2. Copy all the files present in the "SEREVER" folder of this CD-ROM to the web site path that you had set up. 3. Check your site by running any of the asp (even if the asp returns some error information, that means your site has been set up properly) 4. We are using "developers" as the computername, You will need to change the name of your computer or will have to change the asp s according to your computername. Setting up the SQL Server database 1. Make a databa
Platform: | Size: 237568 | Author: 吕毅 | Hits:

[Windows DevelopCanonSDK73

Description: CanonSDK73.rar 多方查询才得到的好东西!-canon sdk 7.3
Platform: | Size: 24864768 | Author: lagerror | Hits:

[Program docBREWDocAndCodePartI

Description: BREW初级技术培训资料及code: 第0章 课程介绍_10min_brooks.pdf 第1章 BREW技术特点与发展趋势_40min_brooks.pdf 第2章 BREW SDK简介_30min_brooks.pdf 第3章 BREW开发基础_60min_xiefei.pdf 第4章 BREW手机简介_20min_xiefei.pdf 第5章 ISHELL_30min_Leslie.pdf 第6章 IDISPLAY使用简介_Leslie.pdf 第7章 ISTATIC_Leslie.pdf 第8章 IMENUCTL_Leslie.pdf 第9章 IImage_Leslie.pdf 第10章 文件操作.pdf 第11章 ITextCtl.pdf 第12章 ITAPI.pdf 第13章 基于HTTP的应用开发.pdf 第14章 IAddrbook.pdf 第15章 铃音管理接口.pdf 第16章 多媒体接口_50min_abel.pdf 第17章 ILicense_20min_abel.pdf-Brew documents and codes: Brew BrewSDK IShell IDisplay IStatic IMenuCtl IImage IFile ITextCtl ITAPI HTTP IAddrbook RingerManagement MultiMedia ILicense
Platform: | Size: 8797184 | Author: Hill | Hits:

[Windows MobileWindows-Phone-SDK-7.0-Doc.chm

Description: windows phone 7.0 SDK 参考手册(分离的独立文件)-windows phone 7.0 SDK reference manual (separate and independent files)
Platform: | Size: 9937920 | Author: weiwei | Hits:

[Graph RecognizeSourceAFIS-1.7.0

Description: SourceAFIS 是一个指纹识别开发SDK。AFIS 是 Automated Fingerprint Identification System 的缩写。它可以比较两个指纹并判别是否属于同一个人,提供 .NET 和 Java 的开发包。-SourceAFIS is a fingerprint identification development SDK. AFIS Automated Fingerprint Identification System is the abbreviation of. It can compare two fingerprints and judging whether to belong to the same person, provide the.net and Java development tool.
Platform: | Size: 1124352 | Author: | Hits:

[SCMCastalia-3.2_OMNeT-IDE_Windows_Linux-master

Description: rutrique libero auctor. Nam mattis diam lorem, vel pretium magna scelerisque suscipit. Aenean ultrices, quam sed volutpat eleifeauris augue lacinia lorem, at pharetra erat tortor at arcu. Vestibululesuada dui finibus semper sodales. Curabitur ss, felis u
Platform: | Size: 830464 | Author: mer4351 | Hits:

[SCMMC20_OpenCPU_GS3_SDK_V1.3

Description: 第5部分:MC20 OpenCPU SDK V1.3 Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Platform: | Size: 749568 | Author: lijinghao | Hits:

[OtherPhysX_2.7.3_SDK_Core

Description: Source Development Kit for Ageia PhysX 2.7.3. Good for making physics interactive games and puzzles. 39 Samples included. AGEIA PhysX SDK 2.7.3 was released on 6th September 2007. Ageia, founded in 2002, was a fabless semiconductor company. Ageia later acquired NovodeX, the company who created PhysX – a Physics Processing Unit chip capable of performing game physics calculations much faster than general purpose CPUs; they also licensed out the PhysX SDK (formerly NovodeX SDK), a large physics middleware library for game production. On February 4, 2008, Nvidia announced that it would acquire Ageia. On February 13, 2008, the merger was finalized. The PhysX engine is now known as Nvidia PhysX, and has been adapted to be run on Nvidia's GPUs.
Platform: | Size: 33302868 | Author: NovodexPhysx | Hits:
« 12 3 4 »

CodeBus www.codebus.net