Re: [1/5] user32: Added tests for DrawIcon and DrawIconEx

2009-06-03 Thread Paul Vriens
Joel Holdsworth wrote: Hi Joel, I've run your new tests on Win95, Win98 and NT4 (all VMware): Win95: == cursoricon.c:1013: Test failed: Overlaying Mask 0 on Color 00A0B0C0 with DrawIcon. Expected 3163. Got

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. > >

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 Date: Sun May 31 20:11:00 2009 +0200 clock:

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 wrote: > Please bottom post on wine-devel. Thanks. > > 2009/6/3 MD.IMAM HOSSAIN : > > > I confirm Hitman X games have no problems with WINE 1.1.11 on Intel > > graphics card. > Sorry for giving wrong information. It is the problem of Intel graphics dri

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 +++

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 t

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 : > > 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 pa

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

2009-06-03 Thread Alexandre Julliard
Matijn Woudt 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 single quote wi

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 unl

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

2009-06-03 Thread Ben Klein
2009/6/3 Wolfgang Walter : > 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 WaitCommEvent

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 Regar

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 wrote: > > Tijnema 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 h

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 d

Re: jscript: Fix parse_double_literal implementation

2009-06-03 Thread Alexandre Julliard
Piotr Caban 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 < ctx->end &&

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 bo

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

2009-06-03 Thread Alexandre Julliard
Piotr Caban 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) > { > ret

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

2009-06-03 Thread Piotr Caban
Alexandre Julliard wrote: > Piotr Caban 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 CLSID_JScriptAuthor = >>

Re: Tests passing on one more platform!

2009-06-03 Thread Nicolas Le Cam
2009/6/3 Dan Kegel : > 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

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

2009-06-03 Thread Alexandre Julliard
Tijnema 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 doesn't really han

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 wh