Re: [PATCH] the function called is cdecl, not WINAPI

2007-08-27 Thread Marcus Meissner
On Mon, Aug 27, 2007 at 02:42:35PM -0700, Juan Lang wrote: > Hi Marcus, > > > the function called is cdecl, not WINAPI > > No it isn't. It's declared that way, but it's wrong. Calling it that > way in Windows crashes. That's why I sent this patch: > http://www.winehq.org/pipermail/wine-cvs/200

re: getting started...

2007-08-27 Thread Dan Kegel
Ed wrote: >I'm brand new to the list and would like to get a Windows application that >I wrote (uCon) to work with wine/winelib. I've submitted it to the application >database. I've tried it on Wine and it *almost* works, so I'd like to pursue >this further by building uCon with Winelib (as is re

Re: Old versions of Photoshop Elements tryout?

2007-08-27 Thread Dan Kegel
On 8/27/07, Dan Kegel <[EMAIL PROTECTED]> wrote: > On 8/27/07, Detlef Riekenberg <[EMAIL PROTECTED]> wrote: > > Or all Trial from one Site: > > > > Photoshop Elements Trial: > > http://ftp.uniroma2.it/Adobe/photoshopelements/win/ Heh. Or ftp://ftp.adobe.com/pub/adobe/photoshopelements/win Someti

Re: Old versions of Photoshop Elements tryout?

2007-08-27 Thread Dan Kegel
On 8/27/07, Detlef Riekenberg <[EMAIL PROTECTED]> wrote: > > I have a copy of Photoshop Elements 1.0, and can easily > > download a tryout of Photoshop Elements 5, but I don't know > > where to get trial versions of 2 through 4. Anyone know? > > Your SN for V4: > http://www.winehq.org/pipermail/wi

Re: 0001-Basic-starting-point-for-implementing-d3dx9_yz.dll.patch

2007-08-27 Thread Detlef Riekenberg
On Mo, 2007-08-27 at 14:13 +0200, Martijn Berger wrote: > > --- > .gitignore |1 + > Makefile.in|1 + > configure.ac |1 + > dlls/Makefile.in |1 + > dlls/d3dx9/Makefile.in | 15 +++ > 5 files changed, 19 insertions(+), 0 delet

Re: Old versions of Photoshop Elements tryout?

2007-08-27 Thread Detlef Riekenberg
On So, 2007-08-26 at 13:29 -0700, Dan Kegel wrote: > Hi all, > I have a copy of Photoshop Elements 1.0, and can easily > download a tryout of Photoshop Elements 5, but I don't know > where to get trial versions of 2 through 4. Anyone know? > Thanks, > Dan Google ? Your SN for V4: http://www.wine

[PATCH] the function called is cdecl, not WINAPI

2007-08-27 Thread Juan Lang
Hi Marcus, > the function called is cdecl, not WINAPI No it isn't. It's declared that way, but it's wrong. Calling it that way in Windows crashes. That's why I sent this patch: http://www.winehq.org/pipermail/wine-cvs/2007-August/035682.html --Juan

Re: DIB Driver code available

2007-08-27 Thread Jesse Allen
On 8/23/07, Stefan Dösinger <[EMAIL PROTECTED]> wrote: > Am Donnerstag, 23. August 2007 20:59 schrieb Jesse Allen: > > > > While you're at it, can you make it more universal so we can add a > > > wined3d driver too, and convince AJ about it? > > > > Okay, but the dib driver is special. A dib works

Re: 0002-Basic-d3dx9-stub.patch

2007-08-27 Thread Roderick Colenbrander
On Monday 27 August 2007 19:37, H. Verbeet wrote: > On 27/08/07, Martijn Berger <[EMAIL PROTECTED]> wrote: > > +WINE_DEFAULT_DEBUG_CHANNEL(d3d10); > > That's not a good idea. Also, since the dll isn't actually called > d3dx9.dll, how do you intend to handle the different versions? There is an orig

Re: getting started...

2007-08-27 Thread Steven Edwards
Hi, On 8/27/07, Ed Sutter <[EMAIL PROTECTED]> wrote: > I'm currently building in a Cygwin environment, using vi, cscope and make > instead of the VCC development GUI, so I think I'm pretty close already. > The wine rpm for RH9 (my current host) is 0.9.2, but the source tree appears > to be newer.

Re: getting started...

2007-08-27 Thread Ed Sutter
Do I need/want the entire Wine source tree if my next step is to attempt to build my application using Winelib? Yes. Its in wine/tools/winemaker I think. You might try adapting your project to mingw on windows before you attempt to build it as a winelib application. It seems to be less trouble t

Re: getting started...

2007-08-27 Thread Steven Edwards
Hello, On 8/27/07, Ed Sutter <[EMAIL PROTECTED]> wrote: > Do I need/want the entire Wine source tree if my next step is to attempt to > build my application using Winelib? Yes. Its in wine/tools/winemaker I think. You might try adapting your project to mingw on windows before you attempt to build

Re: [PATCH] Support for animated cursors

2007-08-27 Thread H. Verbeet
On 27/08/07, Trent Waddington <[EMAIL PROTECTED]> wrote: > +ANIHEADER *anih = NULL; > +LPBYTE *ani_frames = NULL; > +DWORD ani_frame_idx = 0; I don't think you want to be using global variables for that. > -USER_Driver->pSetCursor( > (CURSORICONINFO*)GlobalLock16(HCURSOR_16(hCursor)) ); >

getting started...

2007-08-27 Thread Ed Sutter
Hi, I'm brand new to the list and would like to get a Windows application that I wrote (uCon) to work with wine/winelib. I've submitted it to the application database. I've tried it on Wine and it *almost* works, so I'd like to pursue this further by building uCon with Winelib (as is recommended

Re: wintrust(4/5): Test and implement SoftpubLoadMessage (with patch)

2007-08-27 Thread Alexandre Julliard
"Juan Lang" <[EMAIL PROTECTED]> writes: > +ret = data->pPDSip->pSip->pfGet(data->pPDSip->psSipSubjectInfo, > + &data->dwEncoding, 0, &size, buf); > +if (ret) > +{ > +data->hMsg = CryptMsgOpenToDecode(data->dwEncoding, 0, 0, > data->hProv, > + NULL, NULL); > +

Re: 0002-Basic-d3dx9-stub.patch

2007-08-27 Thread H. Verbeet
On 27/08/07, Martijn Berger <[EMAIL PROTECTED]> wrote: > +WINE_DEFAULT_DEBUG_CHANNEL(d3d10); That's not a good idea. Also, since the dll isn't actually called d3dx9.dll, how do you intend to handle the different versions? (Arguably these dlls are outside Wine's scope, since they're not installed as

Re: [PATCH] Support for animated cursors

2007-08-27 Thread Juan Lang
Hi Trent, thanks for the patch. Generally cc'ing wine-devel isn't necessary unless you have a specific question. +// functions for decoding animated cursors No C++-style comments, please. +//DWORD form = *(DWORD*)chunk->ckData; Dead code should be omitted rather than commented

[PATCH] Implement ImmReleaseContext.

2007-08-27 Thread Trent Waddington
Ugly stub warning replaced with intuitive implementation. Trent From 368ad87d8f242d8e8ae77105cbec549824200f7f Mon Sep 17 00:00:00 2001 From: Trent Waddington <[EMAIL PROTECTED]> Date: Mon, 27 Aug 2007 08:01:17 +1000 Subject: Implement ImmReleaseContext. --- dlls/imm32/imm.c |3 ++- 1 files c

[PATCH] Support for animated cursors

2007-08-27 Thread Trent Waddington
Test program at: http://rtfm.insomnia.org/~qg/animatedcursor.exe Probably doesn't support all the possible animated cursors supported under windows, and correct timing of animation hasn't been attempted. Trent From 760d2556e1f3ce4123b500ffc4f6d141cfcbca03 Mon Sep 17 00:00:00 2001 From: Trent

Re: [patch] Garbage code in text string display

2007-08-27 Thread Guan Xin
On 8/24/07, Reece Dunn <[EMAIL PROTECTED]> wrote: > > You don't need to have a Windows machine to write the tests. You can > write them and build them through the Wine libraries. The reason for > building them on Windows is so that you can verify them against > Windows, but you could always post th

Re: [git] Playing with gitstat (can we change date for the tags?)

2007-08-27 Thread Michael Stefaniuc
Hello, Paul Vriens wrote: > I was just playing with gitstat (http://tree.celinuxforum.org/gitstat/) > to see if it give some nice graphs for Wine as well (on my local box). > > I can see all the tags but for some reason a lot of tags (from > wine-0.0.2 to wine-0.7 and after that wine-940201 to wi

[git] Playing with gitstat (can we change date for the tags?)

2007-08-27 Thread Paul Vriens
Hi, I was just playing with gitstat (http://tree.celinuxforum.org/gitstat/) to see if it give some nice graphs for Wine as well (on my local box). I can see all the tags but for some reason a lot of tags (from wine-0.0.2 to wine-0.7 and after that wine-940201 to wine-980927, so basically ever

Re: Imm32: Update position of default IME window

2007-08-27 Thread Alexandre Julliard
Aric Stewart <[EMAIL PROTECTED]> writes: > + > +/* make sure we are on the desktop */ > +GetClientRect(GetDesktopWindow(),&desk_rect); You have to use GetMonitorInfo to support multi-monitor setups correctly. -- Alexandre Julliard [EMAIL PROTECTED]