Visual.C++.NET托管扩展编程英文版 The most immediately obvious feature of .NET is the runtime, which Microsoft calls the common language runtime. The concept of a runtime is not new to
Advanced_Qt_Programming_ _Creating_Great_Software_with_C++_and_QT4 qt4高级编程英文版 Qt as a good tool and class library is only half the story behind its success. You also need good documentation, tutorials, and books. Afte
GDI加_SDK参考翻译版本 MicrosoftWindowsGDI+是为C/C++开发者提供的一个基于类的应用程序编程接口(API)。它使得程序可以同时在视频显示器和打印机上使用图形和格式化文本。基于MicrosoftWin32的应用程序不能直接访问图形硬件,而是通过GDI+来协调设备驱动和程序动作的交互。GDI+同样支持Mi
WinRunner tutorial WelcometotheWinRunnertutorial,aself-pacedguidethatteachesyouthebasicsoftestingyourapplicationwithWinRunner.Thistutorialwillfamiliarizeyouwiththeproces
TheElementsofCppStyle The Elements of C++ Style is for all C++ practitioners, especially thoseworking in teamswhere consistency is critical. Just as Strunk andWhite’s The E
c++win32线程同步5大方案例程 本人用c++实现的win32线程同步方案归纳,简洁明了,只用做给新手的基本演示,创建线程所用函数为微软c运行时库的_beginthreadex,是微软最推荐使用的函数。 总共5种线程同步方案:事件、信号量、全局变量、临界区、互斥量。