Re: [PATCH 1/3] setupapi/tests: Add rudimentary tests for InstallHinfSectionA/W.

2007-06-11 Thread James Hawkins
On 6/10/07, Misha Koshelev [EMAIL PROTECTED] wrote: Tested on WinXP and Win98 (and of course wine). --- dlls/setupapi/tests/Makefile.in |1 + dlls/setupapi/tests/install.c | 152 +++ 2 files changed, 153 insertions(+), 0 deletions(-) +static void

Re: [PATCH 1/3] setupapi/tests: Add rudimentary tests for InstallHinfSectionA/W.

2007-06-11 Thread Misha Koshelev
On Mon, 2007-06-11 at 01:05 -0700, James Hawkins wrote: On 6/10/07, Misha Koshelev [EMAIL PROTECTED] wrote: Tested on WinXP and Win98 (and of course wine). --- dlls/setupapi/tests/Makefile.in |1 + dlls/setupapi/tests/install.c | 152 +++ 2

Re: [PATCH 1/3] setupapi/tests: Add rudimentary tests for InstallHinfSectionA/W.

2007-06-11 Thread Misha Koshelev
On Mon, 2007-06-11 at 01:05 -0700, James Hawkins wrote: On 6/10/07, Misha Koshelev [EMAIL PROTECTED] wrote: Tested on WinXP and Win98 (and of course wine). --- dlls/setupapi/tests/Makefile.in |1 + dlls/setupapi/tests/install.c | 152 +++ 2

Re: [GDI+: 2/5] added Pens implementation, test

2007-06-11 Thread Alexandre Julliard
Evan Stade [EMAIL PROTECTED] writes: Hi, Changelog: *added pen implementation *added just enough memory and startup implementation to support pens *defined some types *added pen test You need to send that stuff in smaller chunks, for instance there's no reason to put startup

CryptAcquireContext can have multiple flags defined at the same time, V2

2007-06-11 Thread Maarten Lankhorst
Hello, After retrying, I tried the same function arguments that msn messenger 7.5 passes to advapi32. It seems that function _is_ allowed to define the flags CRYPT_NEWKEYSET and CRYPT_VERIFYCONTEXT at the same time. I tried the same flags for advapi32 crosstest 'crypt' in linux and windows.

Bugzilla is still annoying

2007-06-11 Thread Scott Ritchie
What was the status on the offer to upgrade bugzilla? Lately I've been annoyed by how it sends out emails whenever someone subscribes/unsubscribes from a bug. Is this a simple configuration setting, or do we need to upgrade? Thanks, Scott Ritchie

Re: Bugzilla is still annoying

2007-06-11 Thread Marcus Meissner
On Mon, Jun 11, 2007 at 01:05:59PM -0700, Scott Ritchie wrote: What was the status on the offer to upgrade bugzilla? Lately I've been annoyed by how it sends out emails whenever someone subscribes/unsubscribes from a bug. Is this a simple configuration setting, or do we need to upgrade?

Re: CryptAcquireContext can have multiple flags defined at the same time, V2

2007-06-11 Thread Mounir IDRASSI
Hi Marteen, As you mentioned, I can confirm that this combination of flags is allowed only when the default container is specified (the second parameter pszContainer set to NULL). So, a small patch would consist of adding this flags combination to the same switch code of CRYPT_VERIFYCONTEXT. Could

GDI+ programs

2007-06-11 Thread Evan Stade
Hi, I want to make some real applications work with the built-in wine GDI+. Does anyone know of some programs that use GDI+ that would be good for guiding my development? thanks, Evan Stade

Re: GDI+ programs

2007-06-11 Thread Alexander Nicolaysen Sørnes
Mandag 11 juni 2007 23:17, skrev Evan Stade: Hi, I want to make some real applications work with the built-in wine GDI+. Does anyone know of some programs that use GDI+ that would be good for guiding my development? thanks, Evan Stade Command Conquer 3: Tiberium Wars at least requires

Re: GDI+ programs

2007-06-11 Thread Louis Lenders
Evan Stade estade at gmail.com writes: Hi, I want to make some real applications work with the built-in wine GDI+. Does anyone know of some programs that use GDI+ that would be good for guiding my development? thanks, Evan Stade Try Query bugs in bugzilla with keyword gdiplus:

opengl conversation on irc

2007-06-11 Thread Dan Kegel
A bunch of folks just had an interesting discussion about the OpenGL problem on irc. I and Roderick saved a log of the conversation, one per room: http://kegel.com/wine/opengl-wine-chat1.html (the original #winehackers discussion) http://roderick.student.utwente.nl/xorg-devel.log (after it

Re: [GDI+: 3/5] added graphics implementation and tests

2007-06-11 Thread Dmitry Timoshkov
Evan Stade [EMAIL PROTECTED] wrote: Any reason why are you creating a new pen in GdipDrawRectangleI, and while using an existing one in GdipDrawLineI? -- Dmitry. Yes, the reason for that is the passed pen can have any endcap style, but to draw the rectangle the pen needs square endcaps. The

Add new dll mscat32

2007-06-11 Thread Vijay Kiran Kamuju
Hi, I would like to add a stub dll for mscat32.dll in wine. It mostly is a forwarder dll ie, it has forwards for most of the functions to wintrust.dll And it also provides functions for reading catalog files. It is mostly used by microsoft for it installers. I mean for its own products like

Re: GDI+ programs

2007-06-11 Thread Laurent Vromman
Evan Stade a écrit : Hi, I want to make some real applications work with the built-in wine GDI+. Does anyone know of some programs that use GDI+ that would be good for guiding my development? thanks, Evan Stade Navigation uses it (see in AppDB or at http://francois.fouchet.free.fr/ )

Re: Add new dll mscat32

2007-06-11 Thread James Hawkins
On 6/11/07, Vijay Kiran Kamuju [EMAIL PROTECTED] wrote: Hi, I would like to add a stub dll for mscat32.dll in wine. It mostly is a forwarder dll ie, it has forwards for most of the functions to wintrust.dll And it also provides functions for reading catalog files. It is mostly used by microsoft