Win32
FadeTrack
这个作者很懒,什么都没留下…
展开
-
深入探索Win32结构化异常处理
原文:http://blog.csdn.net/diamont/article/details/4259590Matt Pietrek 著董岩 译在Win32操作系统提供的所有功能中,使用最广泛而又没有公开的恐怕要数结构化异常处理( Structured Exception Handling ,SEH ) 了。当你考虑Win32结构化异常处理时,也许会想到_转载 2015-04-21 17:03:59 · 1762 阅读 · 0 评论 -
Building VirtualBox OSE 5.0.0 on Windows 7 (x86)
I have successfully built and test signed VirtualBox OSE 5.0.0 on Windows 7 (x86) thanks for the information from this forum. I’d like to share my experience here.1. Build environment: Windows 7 x86转载 2016-04-08 10:05:46 · 2590 阅读 · 2 评论 -
线程池 与 条件变量
#include <windows.h>#include <stdlib.h>#include <stdio.h>#define BUFFER_SIZE 10#define PRODUCER_SLEEP_TIME_MS 500#define CONSUMER_SLEEP_TIME_MS 2000LONG Buffer[BU原创 2017-04-12 11:20:38 · 577 阅读 · 0 评论