Re: Trace flags passed to SetWindowPos for easier debugging.
"Mike Hearn" <mh(a)codeweavers.com> wrote:
Mike Hearn <mike(a)navi.cx> Trace flags passed to SetWindowPos for easier debugging.
Did you try to add +win? Is that what you are looiking for? windows/winpos.c,1176: BOOL WINAPI SetWindowPos( HWND hwnd, HWND hwndInsertAfter, INT x, INT y, INT cx, INT cy, UINT flags ) { WINDOWPOS winpos; TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n", hwnd, hwndInsertAfter, x, y, cx, cy, flags); if(TRACE_ON(win)) dump_winpos_flags(flags); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- Dmitry.
On Tue, 13 Apr 2004 11:33:02 +0900, Dmitry Timoshkov wrote:
Did you try to add +win?
Is that what you are looiking for?
windows/winpos.c,1176:
<sigh> Yes, I should have thought to check there. I didn't enable +win because it adds a lot of spew I wasn't interested in, but I should have guessed there might already be code to do this and just copied/pasted in my local tree. thanks -mike
participants (2)
-
Dmitry Timoshkov -
Mike Hearn