Hi assembly coders,
I have few questions about debugging x64 window application. Probably this is the same thing as in win32.
When I run gui app under debugger I stick in the infinite message loop, because as I guess it's not able to process all the events under debugger and window doesn't respond. If I could get outside message loop I could simulate events inside WndProc by changing flag values at compering event consts.
How to get outside message loop or is there a simpler way to handle with this? When I debug program in Visual Studio there is no such problem.
And other thing. When I load program into debugger I strat at nt.dll. How to start at module entry point? I use Visual Dux Debugger. Also I got WinDbg, but almost don't use it.