<div dir="ltr"><div>Hello Wine developers,</div><div><br></div><div>I don't know if you guys are interested in this or not, but I figured I'd let you know that Microsoft has now documented one of the undocumented toolbar messages.</div><div><br></div><div>include/commctrl.h (Wine)</div><div>#define TB_UNKWN45D             (WM_USER + 93)</div><div><br></div><div>include\um\commctrl.h (Windows)</div><div>#define TB_SETBOUNDINGSIZE      (WM_USER + 93)</div><div><br></div><div>TB_SETBOUNDINGSIZE message</div><div><a href="https://msdn.microsoft.com/en-us/library/ee663584(v=vs.85).aspx">https://msdn.microsoft.com/en-us/library/ee663584(v=vs.85).aspx</a></div><div><br></div><div><< Sets the bounding size for a multi-column toolbar control. >></div><div><br></div><div>That would mean you could also make the corresponding changes to this code as well:</div><div><br></div><div>dlls/comctl32/toolbar.c</div><div>case TB_UNKWN45D:</div><div>    return TOOLBAR_Unkwn45D(hwnd, wParam, lParam);</div><div><br></div><div>/* UNDOCUMENTED MESSAGE: This appears to set some kind of size. Perhaps it</div><div> * is the maximum size of the toolbar? */</div><div>static LRESULT TOOLBAR_Unkwn45D(HWND hwnd, WPARAM wParam, LPARAM lParam)</div><div><br></div><div>Anyway, just figured I'd share that with you guys.</div><div><br></div><div>Cheers,</div><div><br></div><div>  Alan Feldman</div><div><br></div></div>