摘要: Windows Advanced Driver Debugging presentation (Microsoft)Debugging Printer Drivers (Microsoft)Uninformed - security, reverse engineering and low-levelProduction Debugging for .NET Framework Applicati... 阅读全文
posted @ 2009-08-18 16:23 林志玲 阅读(534) 评论(0) 推荐(0) 编辑
摘要: Microsoft Debugging Tools for Windows includes a number of debuggers and other tools. Some of them are described in this documentation, and others are described elsewhere. The following list briefly d... 阅读全文
posted @ 2009-08-18 14:13 林志玲 阅读(920) 评论(0) 推荐(0) 编辑
摘要: The following sample code demonstrates the use of the wait chain traversal API. It enumerates all threads in the system and prints the wait chain for each thread. To enumerate all threads in the syste... 阅读全文
posted @ 2009-08-18 12:44 林志玲 阅读(548) 评论(0) 推荐(0) 编辑
摘要: from http://sunxiunan.com/?p=1258 为了方便起见,最好安装lua for windows,里面已经包含了很多有用的第三方模块。 require(’luacom’) — luacomie = luacom.CreateObject(”InternetExplorer.Application”)ie:Navigate2(”http://sunxiunan.com”) i... 阅读全文
posted @ 2009-08-18 12:41 林志玲 阅读(2684) 评论(0) 推荐(1) 编辑
摘要: from http://sunxiunan.com/?p=1249 local tbl = {"one", "two", "three", ‘five’} local count = #tbl local inc = 0 function Iter(tableinput) return function() if inc > count then return end inc = inc +... 阅读全文
posted @ 2009-08-18 12:40 林志玲 阅读(427) 评论(0) 推荐(0) 编辑
摘要: from http://sunxiunan.com/?p=1239 lua是一个很有意思的编程语言,我是用它写base64编码辅助工具时候发现的。 lua是巴西里约热内卢大学的一个研究项目,最新版本5.1,真正变成一个人人皆知的编程语言还是因为魔兽世界这个网络游戏。因为暴雪选择了lua作为插件语言,一时间变得众人皆知。现在国内也有不少网络游戏使用lua作为脚本语言。 lua的特点一个是小,整个vm... 阅读全文
posted @ 2009-08-18 12:39 林志玲 阅读(2819) 评论(1) 推荐(1) 编辑