TDD-LTE自动化测试
文章平均质量分 68
v522zy
本
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OutputDebugStr
2. Windows Standard Debug The strings are being output through Windows WINAPI function OutputDebugStr(logStr). The information read by any 3rd party tool. The default tool being used by Altair转载 2012-10-25 20:37:49 · 684 阅读 · 0 评论 -
OutputDebugString.txt
/* * pseudocode for OutputDebugString * * from KERNEL32.DLL ver 5.0.2195.6794 * * Reverse engineered by Steve Friedl (steve@unixwiz.net) */void OutputDebugStringA(LPTSTR *lpString){DBWIN_buf转载 2012-10-25 22:43:44 · 458 阅读 · 0 评论 -
简单的debugview
sysinternals的dbgview想必大家都用过,我写了一个简单的,只监视user层OutputDebugString的输出,原理都包含在代码里了,希望对你有帮助// DBMntor.cpp : Little dbgview。。。。// Coder Jozu//#include #include #include #include #define PAGE_SIZE转载 2012-10-25 22:53:36 · 630 阅读 · 0 评论 -
使用反编译工具反编译Dll,编译成C#
这几天我需要对dll进行反编译,下面是我的步骤,1 . 单击 /data/attachment/portal/et2/201204/ET28499201204210800401.zip 下载反编译工具。下载完成后解压。2. 单击 /data/attachment/portal/et2/201204/ET28499201204210800402.zip 下载导出文件插件。下载完成后转载 2012-10-25 23:08:11 · 2219 阅读 · 0 评论 -
捕捉 OutputDebugString 输出的字符串
http://yonsm.reg365.com/index.php?job=art&articleid=a_20041023_010315在调试状态下,VC 等调试器可以捕捉程序中的 OutputDebugString 输出的信息。其实 OutputDebugString 就是往一片共享影射的内存中写入了一段数据,并创建了两个 Enevt,指明数据写入事件被触发。在非调试状态下,我转载 2012-10-25 22:23:19 · 605 阅读 · 0 评论 -
译:理解 Win32 "OutputDebugString"
2 "OutputDebugString"坚定的 Win32 开发人员可能对 OutputDebugString() API 函数比较熟悉,它可以使你的程序和调试器进行交谈。它要比创建日志文件容易,而且所有“真正的”调试器都能使用它。应用程序和调试器交谈的机制相当简单,而本文将揭示整件事情是如何工作的。本文首先是由以下事件促使的,我们观察到 OutputDebugString(转载 2012-10-25 22:40:10 · 483 阅读 · 0 评论 -
Understanding Win32 "OutputDebugString"
Hardcore Win32 developers are probably familiar with the OutputDebugString() API function that lets your program talk with a debugger. It's handier than having to create a logfile, and all the "real转载 2012-10-25 22:24:49 · 632 阅读 · 0 评论
分享