André Hentschel nerv@dawncrow.de wrote:
- TRACE("(%p,%s)\n", hwnd, debugstr_w(pszClassList));
- TRACE("(%p,%s, %u)\n", hwnd, debugstr_w(pszClassList), Flags);
- if(Flags)
FIXME("unhandled Flags: %u\n", Flags);
...
+#define OTD_FORCE_RECT_SIZING 0x0001 +#define OTD_NONCLIENT 0x0002 +#define OTD_VALIDBITS (OTD_FORCE_RECT_SIZING | OTD_NONCLIENT)
Flags should be printed as hex in the traces. Also using names without capitalizaion and hungarian notation is always preferred for new code in Wine.