
Windows
文章平均质量分 59
ysbcg
呵呵
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
调试与Symbol
Debugging 工具与 Symbol: 入门Debugging Tools for Windows 是一组工具,可侦错 Microsoft® Windows® 操作系统家族的装置驱动程序。Windows Debugging 工具支持以下的侦错:应用程序、服务器、驱动程序及 Windows 核心 Native 32-bit x86、native Intel Itanium转载 2007-12-14 17:50:00 · 1458 阅读 · 0 评论 -
深入Win32 SEH
Matt Pietrek 著http://www.microsoft.com/msj/0197/Exception/Exception.aspx 在所有 Win32 操作系统提供的机制中,使用最广泛的未公开的机制恐怕就要数结构化异常处理(structured exception handling,SEH)了。一提到结构化异常处理,可能就会令人想起 _try、_finally 和 _e翻译 2008-07-30 16:06:00 · 1012 阅读 · 0 评论 -
再探Win32 SEH
很早之前就看了Matt Pietrek的A Crash Course on the Depths of Win32 Structured Exception Handling这篇巨作,真是前无古人,后有仿者。今天突发奇想研究了一下VS2005的SEH,又看到些新的东西,下面说明一下。 看一下文中引用的EXSUP.INC中的异常注册的定义:struct _EXCEPTION_REGIST原创 2008-07-31 00:00:00 · 1729 阅读 · 2 评论 -
Windows 7 的100M保留空间
在安装Windows 7时如果是安装的分区是在Windows 7安装时创建的,会导致操作系统预留100M或者200M的一个预留分区。这个分区是为了Windows 7的BitLocker用的。BitLocker是用来加密磁盘文件的,但是启动文件不能被加密,所以,微软想出了这个办法,单独建立一个预留分区,把启动文件放进去,这样就可以保证BitLocker可以应用在Windows安装的分区上。原创 2010-03-24 17:15:00 · 1622 阅读 · 0 评论 -
DLL, Manifest, Assembly, Search Path
DLL, Manifest, Assembly, Search PathThe post is about the DLL hell, of course.Static and Dynamic DLL LoadingBasically, a DLL can be loaded and used by an executable in two ways: static and转载 2010-04-07 13:35:00 · 1426 阅读 · 0 评论 -
Why did InterlockedIncrement/Decrement only return the sign of the result in win95?
<br /> Why did InterlockedIncrement/Decrement only return the sign of the result?6 May 2004 7:03 AM<br /><br />If you read the fine print of the InterlockedIncrement and InterlockedDecrement functions, you'll see that on Windows NT 3.51 and earlier and on转载 2011-05-18 11:13:00 · 430 阅读 · 0 评论