Trace flags passed to SetWindowPos for easier debugging.

Dmitry Timoshkov dmitry at baikal.ru
Mon Apr 12 21:33:02 CDT 2004


"Mike Hearn" <mh at codeweavers.com> wrote:

> Mike Hearn <mike at 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.




More information about the wine-devel mailing list