搜索资源列表
4QMainWindow
- 关于QT下面综合布局的代码实例,让你熟悉linux窗口程序设计之道-about linux window programming, mainly is layout.
IEStart
- 注册表函数的综合运用实例代码,有兴趣的朋友学习一下。-Comprehensive use of the registry functions example code, interested friends to learn about.
Linux-driver-development12
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第12章、Linux字符设备驱动综合实例。本章将分析5个典型的字符设备驱动,在这些驱动中,将灵活地运用到前面各章所讲解的内容。12.1节讲解按键的设备驱动,加深读者对字符设备驱动架构、阻塞与非阻塞、中断、定时器等相关知识的理解。12.2节讲解触摸屏的设备驱动,触摸屏的设备驱动比按键的设备驱动稍微复杂一些,但是很类似。12.3节讲解TI的DSP提供给通用CPU的HPI(主机并行接口)的设备驱动,硬件结构为AR
IEStart
- 注册表函数的综合运用实例代码,很不错的vc源码,希望能对大家有所帮助-The integrated use of the registry functions example code, very good vc source, I hope you can help
sample
- 《Linux C编程从初学到精通》华清远见嵌入式培训中心 张繁 等编著。本书深入浅出、循序渐进地讲解了Linux平台下的C程序设计,并通过大量的程序实例,以及综合开发案例的演示,帮助读者快速掌握Linux下C语言编程的方法和技巧。-Linux C programming, from beginner to proficient, "the book easy to understand, step-by-step explanation of the C programming und
innerhook
- VC++ HOOK和数据库访问实例源代码,内含了VB和VC++综合的实例,有兴趣的朋友可以下载参考这些实例源代码。-VC++ HOOK and database access to the source code examples, containing the instance of VB and VC++ comprehensive, and friends who are interested can download the reference source code examples.
jauerlog
- 网页上常用的特效综合演示实例,点击弹出层,点击弹出登录框、注册框,并使用formValidator表单验证插件以Ajax方式验证输入信息是否正确,通过本例子,你可搞明白如果实现Ajax弹出层和登录注册的原理。-Commonly used in web page effects demo instance, click on the pop-up layer, click on the pop-up login box, registration box and use formValidator
Simulink
- Simulink动态系统建模与仿真 S-Funcition 命令行仿真技术 综合实例-Simulink modeling and simulation of dynamic systems S-Funcition Comprehensive examples command line simulation technology
linux进程之间的通讯综合实例
- A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C