Recent wine and valgrind, possible?

2005-07-12 Thread Peter Zelezny
Hi All, I'm trying to get valgrind and wine working, that is to debug the exe wine itself is running. So far I've failed, so if anyone has any information or patches to get this working, I'd appreciate it. Firstly I applied this patch to Wine-20050628: http://www.winehq.org/hypermail/win

Re: Question about Wine tests

2005-07-12 Thread Dimi Paun
On Tue, 2005-07-12 at 09:20 -0500, Mitchell Mebane wrote: > I've been running the Wine test from http://test.winehq.com/data/ for > a while now. I usually run them in batches. It suddenly struck me that > maybe I should be restarting Windows between each test. Should I do > this for best results, o

Re: Installer: How is the progress coming along?

2005-07-12 Thread Hiji
Fantastic! Thank for you for the prompt update/ response. :) Hiji --- Jeremy White <[EMAIL PROTECTED]> wrote: > Hi, > > I'm the one that promised to lock Rob and Aric > in a room; and I intend to stick to that promise. > But give me one week; we're planning on launching > a program around it,

Re: commctrl.h: Add WC_STATIC

2005-07-12 Thread Mike McCormack
Felix Nawothnig wrote: This could be fixed by adding a _ prefix. Adding another prefix fixes nothing. The original Windows SDK headers don't export a symbol, and we do. It's simply good practice to try and be as close as possible to the original SDK. Mike

file locking

2005-07-12 Thread Brian Vincent
I've been playing around with file locking and Wine, namely the fact that Wine doesn't have any. Is there any way around this, maybe placing the burden on a filesystem? If I wanted to share files between two different users (say with something dumb like file permissions 666), is there any way to

Re: Installer: How is the progress coming along?

2005-07-12 Thread Jeremy White
Hi, I'm the one that promised to lock Rob and Aric in a room; and I intend to stick to that promise. But give me one week; we're planning on launching a program around it, and we're still ironing out the kinks. Cheers, Jeremy Hiji wrote: How are things coming along with the application insta

Installer: How is the progress coming along?

2005-07-12 Thread Hiji
How are things coming along with the application installer? I remember at one point reading that "person A" was going to lock "person B" in some room until work on it was completed. >:) Right now, many us wine users can't install a lot of apps on newer versions of Wine. So, either we're stuck on

Re: AppDB screenshots and color problems

2005-07-12 Thread Oliver Stieber
When I save the image locally file says, 'appimage.php: PNG image data, 1024 x 768, 8-bit colormap, non-interlaced'. --- James Liggett <[EMAIL PROTECTED]> wrote: > Hi all, > I just looked at some screenshots I sent in for > Steam: > http://appdb.winehq.org/screenshots.php?appId=1163&versionId= >

Re: AppDB screenshots and color problems

2005-07-12 Thread Chris Morgan
Yes. This is likely due to the older version of GD that we have on the server. We are anxiously awaiting an upgrade to a newer version :-) Chris On 7/12/05, James Liggett <[EMAIL PROTECTED]> wrote: > Hi all, > I just looked at some screenshots I sent in for Steam: > http://appdb.winehq.org/scr

AppDB screenshots and color problems

2005-07-12 Thread James Liggett
Hi all, I just looked at some screenshots I sent in for Steam: http://appdb.winehq.org/screenshots.php?appId=1163&versionId= (the HL Multiplayer Shot.) If you look at it, you'll notice the color depth is screwed up. What's going on? Thanks, James Liggett

RE: wined3d - d3d9 regression testing 7_12_2005

2005-07-12 Thread Nick Burns
please forgive the spacing... ...This is just a start at a format for this kinda thing -- pls modify as ya see fit... ...also more demos wont hurt(well only me)... results of wined3d - d3d9 regression testing 7_12_2005 --Windows98SE AthlonXP 2100+, 256MB, GF4 4200 64MB 85hz (using wined3d+GLX

Re: commctrl.h: Add WC_STATIC

2005-07-12 Thread Felix Nawothnig
Mike McCormack wrote: I'm curious, what is the reason for the special case handling for MSVC and GCC when we have to do the portable way anyway? I can see two reasons: * The portable way adds a (non-standard) symbol. This could be fixed by adding a _ prefix. * The static string declaration m

Re: commctrl.h: Add WC_STATIC

2005-07-12 Thread Mike McCormack
Felix Nawothnig wrote: +#define WC_STATICA"Static" +#if defined(__GNUC__) +# define WC_STATICW (const WCHAR []){ 'S','t','a', 't','i','c',0 } +#elif defined(_MSC_VER) +# define WC_STATICW L"Static" +#else +static const WCHAR WC_STATICW[] = { 'S','t','a','t','i','c',0 }; +#endif +#define WC_

Re: commctrl.h: Add WC_STATIC

2005-07-12 Thread Felix Nawothnig
Dmitry Timoshkov wrote: +#define WC_STATICA "Static" +#if defined(__GNUC__) +# define WC_STATICW (const WCHAR []){ 'S','t','a', 't','i','c',0 } +#elif defined(_MSC_VER) +# define WC_STATICW L"Static" +#else +static const WCHAR WC_STATICW[] = { 'S','t','a','t','i','c',0 }; +#endif +#define WC_STAT

Re: msi: use SourceLIst Functions

2005-07-12 Thread Mike McCormack
Aric Stewart wrote: +MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED, +MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEstringW, sourcepath, +&sz); Hi Aric, Seeing that you've gone to the trouble to define INSTALLPROPERTY_LASTUSEDSOURCE(A/W) i

Re: commctrl.h: Add WC_STATIC

2005-07-12 Thread Dmitry Timoshkov
"Felix Nawothnig" <[EMAIL PROTECTED]> wrote: Frank Richter wrote: +#define WC_STATICA "Static" +#if defined(__GNUC__) +# define WC_STATICW (const WCHAR []){ 'S','t','a', 't','i','c',0 } +#elif defined(_MSC_VER) +# define WC_STATICW L"Static" +#else +static const WCHAR WC_STATICW[] = { 'S','t','

Question about Wine tests

2005-07-12 Thread Mitchell Mebane
I've been running the Wine test from http://test.winehq.com/data/ for a while now. I usually run them in batches. It suddenly struck me that maybe I should be restarting Windows between each test. Should I do this for best results, or is it OK to run them back to back? --Mitchell -- I find t

Re: commctrl.h: Add WC_STATIC

2005-07-12 Thread Felix Nawothnig
Frank Richter wrote: +#define WC_STATICA "Static" +#if defined(__GNUC__) +# define WC_STATICW (const WCHAR []){ 'S','t','a', 't','i','c',0 } +#elif defined(_MSC_VER) +# define WC_STATICW L"Static" +#else +static const WCHAR WC_STATICW[] = { 'S','t','a','t','i','c',0 }; +#endif +#define WC_STA

RE: wined3d - d3d9 regression testing

2005-07-12 Thread Oliver Stieber
--- Nick Burns <[EMAIL PROTECTED]> wrote: > results of wined3d - d3d9 regression testing on > windows98se gf4 4200 64MB > (using wined3d+GLX->WGL patch) > > General overview > some demos give odd crash on exit > resizing windows is hacked (blame me) -- instead > of stretching the output >

Re: Palm Hotsync and usbserial: New Findings

2005-07-12 Thread Andreas Mohr
Hi, On Tue, Jul 12, 2005 at 12:48:36AM -0700, James Liggett wrote: > Yes it does. And I found a driver, so it works now. I guess I spoke a > little too soon...sorry about that. I knew it. ;) The chances of an unsupported USB-Serial chip in Linux should be very slim, since I'd think that such a chi

Re: Palm Hotsync and usbserial: New Findings

2005-07-12 Thread James Liggett
Yes it does. And I found a driver, so it works now. I guess I spoke a little too soon...sorry about that. James On Tue, 2005-07-12 at 09:33 +0200, Uwe Bonnes wrote: > > "James" == James Liggett <[EMAIL PROTECTED]> writes: > > James> On Thu, 2005-07-07 at 10:51 +0200, Uwe Bonnes wrote: >

Re: Palm Hotsync and usbserial: New Findings

2005-07-12 Thread Uwe Bonnes
> "James" == James Liggett <[EMAIL PROTECTED]> writes: James> On Thu, 2005-07-07 at 10:51 +0200, Uwe Bonnes wrote: >> > "James" == James Liggett <[EMAIL PROTECTED]> writes: >> James> Hello all, I have been working on getting Hotsync to sync to a James> USB cradle using