-----Original Message----- From: eric [mailto:eric.pouech@wanadoo.fr] Sent: Thursday, January 10, 2002 11:45 AM To: Bill Medland Cc: wine-devel@winehq.com Subject: Re: Debugger set breakpoint with full filename
Bill Medland a écrit :
I've spent time looking for the answer and trying the (to
me) obvious
options and now I give in.
How, in the debugger, do I specify "Set a break point at DllMain of E:\BIN.50A..MYDLL.DLL" without the debugger complaining about syntax etc.?
hmmm debugger isn't ready to handle DLL names which contain '.'
Woops. I meant an ellipsis.
another solution is to ask the debugger to break on each DLL loading. set $BreakOnDllLoad = 1 then, you would be able to add a breakpoint on DllMain (which, I assume would be exported from the DLL, meaning its symbol will be known to the debugger)
Unfortunately not.
Thanks for the help anyway.
Bill
Unfortunately not.
it should (under the name EntryPoint) try MyDLL.EntryPoint, it should work
A+