简单的多线程例子,可以很清楚的看到怎么实现,win32编程,很易懂.-simple multithreading example, we can clearly see how the realization of win32 program, very easy to understand. 下载
|
欧姆龙最新PLC CPH1系列hostlink应用例子,用于编写上位机控制软件,通过串口直接控制PLC。用vc编写,方便转化为其他语言。 包括内容: 1:自封装串口类(来源于网络,做了适当修改) 2:多线程,线程间同步,通讯等。 3:生产者消费者模型应用,环形缓冲队列应用 4:欧姆龙hostlink通讯通讯同步处理,FCS校验值计算,各种hostlink指令使用示例。 5:线程消息处理类封装。 6:windows程序中带console调试界面,可把调试信息输出到控制台窗口及文件。 7:windows界面调试工具。(win32多线程程序设计一书中WM_COPYDATA例子封装,运行程序前启动目录中CopyRecv程序。) 8:自封装高精度计时器。(QueryPerformanceFrequency,QueryPerformanceCounter) 9:其他详见代码,此测试程序对初学者非常有帮助,而请大虾多指教。 e-mail:m__point@163.com -OMRON PLC CPH1 latest series hostlink application examples, for the preparation of PC control software through direct serial control PLC. Prepared using vc facilitate conversion to other languages. Including : 1 : Since Packaging serial category (from the network, so the appropriate modifications) 2 : multiple threads, thread synchronization, communications. 3 : Producer consumer model, a circular buffer queue application 4 : OMRON hostlink synchronous communications Communications, FCS checksum calculation, hostlink various examples of the use of directives. 5 : threaded message processing category Packaging. 6 : windows proceedings with console debugging interface Debugging information can be output to the console window and documents. 7 : windows interface debugging tools. (Win32 multit 下载
|
关于曲线光滑的一个OpenGL下的例子。是在Win32下面实现的。-on a smooth curve OpenGL example. Below is the Win32 achieve. 下载
|
Windows环境下32位汇编语言是一种全新的编程语言。它使用与C++语言相同的API接口,不仅可以用来开发出大型的软件,而且是了解操作系统运行细节的最佳方式。本书从编写应用程序的角度,从“Hello World!”这个简单的例子开始到编写多线程、注册表和网络通信等复杂的程序,通过60多个实例逐渐深入Win32汇编语言的方方面面。本书作者罗云彬拥有十余年汇编语言编程经验,是汇编编程网站http://asm.yeah.net和汇编编程论坛http://win32asm.yeah.net的站长。本书是作者多年来编程工作的总结,适合于欲通过Win32汇编语言编写Windows程序的读者。-under Windows 32 assembly language is a brand new programming language. It uses the same language with the C API interface, not only can be used to develop large-scale software but details of the operating system running in the best way. Preparation of the book from the perspective of applications, "Hello World!" this is a simple example of the beginning of the preparation of multi-threaded, the registry, and network communications, such as complex procedures, through more than 60 examples of deepening Win32 compilation of language in all its aspects. The author of this book Luo Bin has ten years experience in assembly language programming, the programming is a compilation website http : / / asm.yeah.net Programming Forum and compilation http : / / win32asm.yeah.net Webmaster. Th 下载
|
完整版的 Windows 环境下32位汇编语言程序设计(第2版)----罗云彬 编著(会员投诉不是第2版) Windows环境下32位汇编语言是一种全新的编程语言。它使用与C++语言相同的API接口,不仅可以用来开发出大型的软件,而且是了解操作系统运行细节的最佳方式。 本书从编写应用程序的角度,从“Hello World!”这个简单的例子开始到编写多线程、注册表和网络通信等复杂的程序,通过70多个实例逐渐深入Win32汇编语言的方方面面。 本书作者罗云彬拥有十余年汇编语言编程经验,是汇编编程网站http://asm.yeah.net和汇编编程论坛http://win32asm.yeah.net的站长。本书是作者多年来编程工作的总结,适合于欲通过Win32汇编语言编写Windows程序的读者。-complete version of the Windows 32 environment Assembly Language Programming (2nd Edition )---- Luo Bin edited (Member complaint is not the first version 2) under Windows 32 assembly language is a new programming language Introduction. It uses the same language with the C API interface, not only can be used for the development of large-scale software it is to understand details of the operating system running in the best way. Preparation of the book from the perspective of applications, "Hello World!" The simple example of writing began multithreading, registry, and network communications, and other complex procedures, through more than 70 examples of deepening Win32 compilation of language in all its aspects. The author of Luo Bin has more than 10 years of experience in assembly 下载
|
本压缩文件为东方天华主编的Visual C++.Net范例入门与提高第六章的代码,其中包含如下程序的代码。 6.1 隐式调用动态链接库 6.2 显式调用动态链接库 6.3 创建Win32 DLL实例 6.4 线程间的通讯 6.5 线程间的优先级 6.6 线程间的同步 6.7 创建子进程 6.8 进程间共享数据- 下载
|
Http Server 1.1 By Cooldiyer 一个简单的个人web服务器。适合于所有win32平台,能自动在进程表中隐藏。 可实现的功能是: 1.可自定义网页根目录。 2.主页默认为index.htm。 3.可自定义端口。 4.可自定义服务端每次发送数据包的大小。 5.为稳定期间,本服务器使用多线程的方法,可满足不同场合的使用。 6.运行时可以隐藏窗口。 用法:http rootdir port byte [-hide] 参数说明: rootdir -> 网页的根目录 port -> 服务器的端口 byte -> 服务器每次发送数据包的大小(字节),建议设定为1024字节 -hide -> 程序隐藏窗口运行 例子1: http c:\wwwroot\ 80 1024 http服务器的网页的根目录为c:\wwwroot\, 端口为80, 传送数据包的大小为1024字节。 例子2: http c:\wwwroot\ 80 1024 -hide http服务器的网页的根目录为c:\wwwroot\, 端口为80, 传送数据包的大小为2048字节,隐藏运行。 注意: 1.由于本程序隐藏窗口,所以请小心使用,谢谢下载。 -By Cooldiyer a simple personal web server. Suitable for all win32 platform, the process can be automatically hidden table. The function can be realized are : 1. The website can be obtained from the definition of the root directory. 2. Home default index.htm. 3. Self-defined ports. 4. Services available from the definition of each side to send the size of the packets. 5. For the stability period, the use of multi-threaded server approach to meet the use of different occasions. 6. Running window can be hidden. Usage : http rootdir port byte [-hide] parameters : rootdir - gt; Web root directory port-gt; The server port byte-gt; Each server to send data packets the size (in bytes), proposes to set a 1024 byte-hide-gt ; windows operating procedures hidden an example : http c : \ wwwroot \ 80 10 下载
|