![]() |
| [[ Home | Forums | 3D Engines Database | Wiki | Articles/Tutorials | Game Dev Jobs | IRC Chat Network | Contact Us ]] |
|
|
#1 |
|
New Member
Join Date: May 2006
Location: Spain
Posts: 2
|
Using OutputDebugString for tracing your programs is probably not a good idea, at least if you have lots of traces being generated (OutputDebugString raises an exception and causes a kernel mode transition). So you will probably end up implementing your own tracing/logging system. Parts of code that are not under your control may be still using OutputDebugString(like Debugging Tools for Windows, DirectX, etc). The code listed below allows capturing OutputDebugString calls generated inside your own process (in fact, it is capturing all the OSD calls generated by all the active processes).
You will need to put this piece of code in a separate thread, but those details are omitted for better clarity. NOTE: If the process is being debugged, the ODS calls will be intercepted by debugger. Code:
Happy coding, http://entland.homelinux.com/blog/ |
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|