Re: gdiplus: Add test cases for GdipDrawCurve

2009-06-03 Thread Paul Vriens
Andrew Eikum wrote: Vincent Povirk wrote: +/* make a graphics object and pen object */ +status = GdipCreateFromHDC(hdc, graphics); +expect(Ok, status); +ok(hdc != NULL, Expected HDC to be initialized\n); + +status = GdipCreateFromHDC(hdc, graphics); +expect(Ok,

Re: Tests passing on one more platform!

2009-06-03 Thread Paul Vriens
Dan Kegel wrote: I just had a look at http://test.winehq.org and it seems that as of a couple days ago, a Win2000 machine has started passing all the tests! That's three OSs now: Win2000, Win2003, and WinXP. (Not all systems with those OSs pass the tests, but still, having even one box per OS

Re: The present state of Direct3D in WINE

2009-06-03 Thread MD.IMAM HOSSAIN
I have tested Hitman X games to Intel graphics card And Prince of Persia X games to nVidia graphics card. I confirm Hitman X games have no problems with WINE 1.1.11 on Intel graphics card. We all know that Intel 3D driver is open-source and nVidia 3D driver is proprietary. best regards, MD.IMAM

Re: The present state of Direct3D in WINE

2009-06-03 Thread Ben Klein
Please bottom post on wine-devel. Thanks. 2009/6/3 MD.IMAM HOSSAIN imamdxl8...@gmail.com: I have tested Hitman X games to Intel graphics card And Prince of Persia X games to nVidia graphics card. I confirm Hitman X games have no problems with WINE 1.1.11 on Intel graphics card. Does the

Extending winemenubuilder to create Application Bundles on OS X

2009-06-03 Thread Steven Edwards
Hi, Recently I've been doing a lot of hacking on my local tree for OS X projects. The lack of support in winemenubuilder to generate application bundles for installed applications from ShellLinks like we do for FreeDesktop items has been killing me. I've just been building simple wrapper scripts

Re: [Request for review] wrc: Add support for nameID with quotes

2009-06-03 Thread Alexandre Julliard
Tijnema tijn...@gmail.com writes: Hello all, I was just checking around some old bugs and found 786 still opened. I've written a patch for it, but I want to know if I'm anywhere close to get it in. That would be a good way to handle quoted strings, but that's not what Windows does. It

Re: Tests passing on one more platform!

2009-06-03 Thread Nicolas Le Cam
2009/6/3 Dan Kegel d...@kegel.com: I just had a look at http://test.winehq.org and it seems that as of a couple days ago, a Win2000 machine has started passing all the tests!  That's three OSs now: Win2000, Win2003, and WinXP. (Not all systems with those OSs pass the tests, but still, having

Re: jscript: Added NAN definition (1/10)

2009-06-03 Thread Piotr Caban
Alexandre Julliard wrote: Piotr Caban piotr.ca...@gmail.com writes: diff --git a/dlls/jscript/jscript_main.c b/dlls/jscript/jscript_main.c index 37266e5..740bb06 100644 --- a/dlls/jscript/jscript_main.c +++ b/dlls/jscript/jscript_main.c @@ -38,6 +38,21 @@ static const CLSID

Re: jscript: Added NAN definition (1/10)

2009-06-03 Thread Alexandre Julliard
Piotr Caban piotr.ca...@gmail.com writes: Some functions needs to return NAN. The other possibility of implementing it is following: static inline DOUBLE ret_nan(void) { VARIANT v; num_set_nan(v); return V_R8(v); } or #ifdef NAN static inline DOUBLE ret_nan(void) {

Re: mlang/tests: [Patch 4] Add tests for LcidToRfc1766

2009-06-03 Thread Paul Vriens
Detlef Riekenberg wrote: Hi Detlef, This patch introduces test failures on what seems: - all Win95 boxes - some Win98 boxes - some W2K boxes See: http://test.winehq.org/data/tests/mlang:mlang.html There is one XP

Re: jscript: Fix parse_double_literal implementation

2009-06-03 Thread Alexandre Julliard
Piotr Caban piotr.ca...@gmail.com writes: @@ -382,13 +383,23 @@ static int parse_double_literal(parser_ctx_t *ctx, LONG int_part, literal_t **li } d = int_part; -while(ctx-ptr ctx-end isdigitW(*ctx-ptr)) -d = d*10 + *(ctx-ptr++) - '0'; +while(ctx-ptr

Re: Problem with async. comm from Wine to a USB-Serial-converter

2009-06-03 Thread Wolfgang Walter
Am Donnerstag, 28. Mai 2009 schrieb Henrik Jacobsson: Hi. I just got myself a USB-GPS (GlobalSat BU-353) and wanted to run SeaClearII, a navigation-program with it. Turns out that Wine got confused when the USB-Serial-driver wasn't acting like a real serial-device though. The app does what

Re: [Request for review] wrc: Add support for nameID with quotes

2009-06-03 Thread Matijn Woudt
On Wed, Jun 3, 2009 at 9:28 AM, Alexandre Julliard julli...@winehq.org wrote: Tijnema tijn...@gmail.com writes: Hello all, I was just checking around some old bugs and found 786 still opened. I've written a patch for it, but I want to know if I'm anywhere close to get it in. That

wine question

2009-06-03 Thread Anna Rogov
Dear Sir,    I am trying to call Win32 Dll (that is built in VS 2003) from C++  Linux application ( in Ubuntu ) through wine shared object without  rebuild the application with wine. I'll be glad if you can help me  with this task.    Looking forward for hearing from you, Thank you, Best

Re: Problem with async. comm from Wine to a USB-Serial-converter

2009-06-03 Thread Ben Klein
2009/6/3 Wolfgang Walter w...@stwm.de: I posted the patch on wine-patches. But nobody commented on it so I don't know if it is ok or not. As we need it for several applications we use I have a version for newer wine versions. It is attached. The patch actually fixes 3 things: 1) Fix

Testing with Comctl32 6.0 (and further versions)

2009-06-03 Thread Nikolay Sivov
Hi. I'm thinking about adding a possibility to test both previous comctl32 and version 6 (or greater maybe in next versions). For example if I compiled in a manifest resource for 6.0 I'll get 6.0 loaded on = XP, but the best variant for me is to load not manifest aware version first, then

Re: [Request for review] wrc: Add support for nameID with quotes

2009-06-03 Thread Alexandre Julliard
Matijn Woudt tijn...@gmail.com writes: Thanks, didn't notice that one. I've checked it with the rc from visual studio 2008 and you're right, it's really mysterious(just like the rest of windows). Single and double quotes are just copied, but only if they are in pairs. Though, there can be a

Re: Problem with async. comm from Wine to a USB-Serial-converter

2009-06-03 Thread Wolfgang Walter
Am Mittwoch, 3. Juni 2009 schrieben Sie: 2009/6/3 Wolfgang Walter w...@stwm.de: I posted the patch on wine-patches. But nobody commented on it so I don't know if it is ok or not. As we need it for several applications we use I have a version for newer wine versions. It is attached. The

AppDB backlog of test reports for apps with maintainers

2009-06-03 Thread Rosanne DiMesio
There is a growing backlog of test reports for apps with maintainers still awaiting approval. My understanding of how things are supposed to work is that if a maintainer does not process a report within a week, they are sent a couple of reminder notices, and eventually removed as maintainer if

Re: (try2) [1/2] kernel32/tests: Add tests for CreateFile errors and opening volumes

2009-06-03 Thread Paul Vriens
Guy Albertelli wrote: Changelog: - Add tests to verify error codes returned for certain error cases. - Also add tests for opening volumes and handle the case where we do not have the rights to access the volume. --- dlls/kernel32/tests/file.c | 326

Re: The present state of Direct3D in WINE

2009-06-03 Thread MD.IMAM HOSSAIN
On Wed, Jun 3, 2009 at 12:55 PM, Ben Klein shackl...@gmail.com wrote: Please bottom post on wine-devel. Thanks. 2009/6/3 MD.IMAM HOSSAIN imamdxl8...@gmail.com: I confirm Hitman X games have no problems with WINE 1.1.11 on Intel graphics card. Sorry for giving wrong information. It is

Re: Alexandre Julliard : clock: Build resource files separately instead of including them all from a global file .

2009-06-03 Thread Michael Stefaniuc
Hello Alexandre, Alexandre Julliard wrote: Module: wine Branch: master Commit: aa41526c73a5fbcc2c08a9342107ee76173a2b97 URL: http://source.winehq.org/git/wine.git/?a=commit;h=aa41526c73a5fbcc2c08a9342107ee76173a2b97 Author: Alexandre Julliard julli...@winehq.org Date: Sun May 31 20:11:00

Re: (try2) [1/2] kernel32/tests: Add tests for CreateFile errors and opening volumes

2009-06-03 Thread Guy Albertelli
On Wed, 2009-06-03 at 17:44 +0200, Paul Vriens wrote: Guy Albertelli wrote: Changelog: - Add tests to verify error codes returned for certain error cases. - Also add tests for opening volumes and handle the case where we do not have the rights to access the volume. ---