Re: Add support for CS_NOCLOSE

2003-08-09 Thread Dmitry Timoshkov
Alexandre Julliard [EMAIL PROTECTED] wrote: This is implemented already in MENU_InitSysMenuPopup; if it doesn't work right it should be fixed there. Windows doesn't use SetWindowPos to update the disabled Close button, but draws the button directly. So you can apply the patch and ignore only

Re: [antony@antgel.co.uk: .msi files]

2003-08-09 Thread Dustin Navea
what kind of help you need? if its running the prog on a windows pc, i can do that, if the eula allows for redistribution, or if there is a trial somewhere --- Antony Gelberg [EMAIL PROTECTED] wrote: On Sun, Aug 03, 2003 at 11:25:40PM +0100, Antony Gelberg wrote: I know it's bad form to keep

Re: propset.c: In function `DSPROPERTY_EnumerateW

2003-08-09 Thread Duane Clark
Peter Birch wrote: The latest cvs code (08/06/2003 20:45:00 pst) will not compile - I get the following error: gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -D__WINESRC__ -Wall -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o propset.o

Re: Status Update - Lostwages

2003-08-09 Thread Tom
Mark Westcott wrote: On Saturday 09 August 2003 07:44, Tom wrote: Dmitry Timoshkov wrote: Tom [EMAIL PROTECTED] wrote: Here is a small update to the status pages. + liRemove - Some of the bullets from DierctX section/li an apparent typo above Please explain where

Using Wine for Production Build Processes

2003-08-09 Thread Bob Dixon
We currently support production build processes using both FreeBSD and Windows 2000 and we're interested in consolidating our builds on FreeBSD systems as much as possible. Our Windows builds currently run Visual Studio 6.0, 7.0, and 7.1 on Windows 2000 compute servers. There's an ongoing

Re: partial implementation of msi.dll

2003-08-09 Thread Mike McCormack
Hey Greg, The documentation for MSI is fairly incomplete. The file format was mostly undocumented, but it looks like things get better as they get more abstract ;) Fortunately it seems fairly well structured. The database and installer parts are cleanly seperated from each other. The next

Re: Add support for CS_NOCLOSE

2003-08-09 Thread Dmitry Timoshkov
Alexandre Julliard [EMAIL PROTECTED] wrote: Actually that doesn't look right either, we shouldn't bypass the normal painting code IMO; but RedrawWindow(RDW_FRAME) would probably work better than SetWindowPos. Here is an updated patch which works for me and also removes WM_SYSCOMMAND/SC_CLOSE