![]() |
|
#1
|
||||
|
||||
|
Debugger question
hey pals,
my problem is describe as follow. I take the source of the debugger loop from Vs.Net studio now i want to obtain the name of the dll from the LOAD_DLL_DEBUG_INFO but the member lpImageName is empty all the time. How i can solve this riddle... maybe a easy question but i don't know how to solve... regards Nukacola Last edited by Nukacola; 07-06-2005 at 20:31. |
|
#2
|
|||
|
|||
|
Could you be more specific? Which debugger..........is this problem in softice, olly, or windbg? Does it happen in only one debugger and not the other?
|
|
#3
|
||||
|
||||
|
hey sure,
i thought u miss the point i wanna create a little debugger by myself. I take the main debugger loop for my source from the MSDN. Now i wanna identify which Dll is loaded if the LOAD_DLL_DEBUG_EVENT occoured. I hope it's now more clean what i wanna do. Regards Nukacola |
|
#4
|
||||
|
||||
|
heya.
the system provides dll names with this event only when you CREATE the process, not when you attach to it. also note that lpImageName points to an address in the address space of the DEBUGGEE, not your debugger and that the string it points to could be in unicode, so its a bit tricky to read it out ;P |
|
#5
|
||||
|
||||
|
Heya upb,
i did create the process but the member lpImageName of LOAD_DLL_DEBUG_INFO is empty (filled with zeros or with 0xc). So what i did wrong. If i"m at home i post the source. Maybe that will help.. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Which debugger is best? | nakkeost | General Discussion | 31 | 05-30-2011 11:14 |
| Best debugger for DOS? | Taitch | General Discussion | 13 | 10-21-2010 13:46 |
| IDA Pro debugger question | jonwil | General Discussion | 2 | 06-03-2005 07:11 |