Re[2]: EV_RXFLAG emulation

2007-07-09 Thread Valentine Sinitsyn
Hi, UB> The problem with EV_RXFLAG is, that the UNIX spec doesn't know it (to my UB> knowledge). So most if not all kernel level drivers don't implement it. So UB> we have to workaround or propose a kernel driver change. Yeah, that's was what I wrote in the second item of the list (actually, for m

Re: working on urlmon HttpProtocol implementation

2007-07-09 Thread Misha Koshelev
Okay, I have an implementation that I like now, and so I'll send it out to wine-patches when I can get my ObtainUserAgentString patches in. On the plus side the WINEDEBUG=+wininet matches very very closely now between my implementation and native (pretty much exactly for the querydataavailable/read

Re: Call for win16 tests

2007-07-09 Thread Markus Amsler
Dan Kegel wrote: On 7/9/07, Markus Amsler <[EMAIL PROTECTED]> wrote: We have to distinguish between win16 and dos tests. Absolutely. dos .com executables currently don't work, but win16 .exe's with the same contents do work. I plan to test DOS .com files using very simple pure assembly. (That

Re: Call for win16 tests

2007-07-09 Thread Dan Kegel
On 7/9/07, Markus Amsler <[EMAIL PROTECTED]> wrote: We have to distinguish between win16 and dos tests. Absolutely. dos .com executables currently don't work, but win16 .exe's with the same contents do work. I plan to test DOS .com files using very simple pure assembly. (That was the real way

Re: Call for win16 tests

2007-07-09 Thread Markus Amsler
Dan Kegel wrote: As Andreas Mohr pointed out a while back, http://www.winehq.org/pipermail/wine-devel/2005-August/039602.html we really need a win16 test suite to make sure our win16 support doesn't rot. As far as I know, nobody's managed to get win16 tests into the tree, presumably because the

Re: bug triaging

2007-07-09 Thread James Hawkins
On 7/9/07, Scott Ritchie <[EMAIL PROTECTED]> wrote: Don't got permission to do that. At least, not since last I checked. Speaking of which, I'd like bugzilla permissions to be a triager. Thanks, Scott Ritchie On Sun, 2007-07-08 at 19:48 -0700, James Hawkins wrote: > Hi, > > > --- Addition

Re: bug triaging

2007-07-09 Thread Scott Ritchie
Don't got permission to do that. At least, not since last I checked. Speaking of which, I'd like bugzilla permissions to be a triager. Thanks, Scott Ritchie On Sun, 2007-07-08 at 19:48 -0700, James Hawkins wrote: > Hi, > > > --- Additional Comment #3 From Austin English 2007-07-08 21:16 -

Re: color fix

2007-07-09 Thread H. Verbeet
On 09/07/07, Kovács András <[EMAIL PROTECTED]> wrote: Hi, This will fix Beyond Good & Evil color (bgr<=>rgb) problem. Based on stefand's suggestion. What is the actual problem that this patch fixes?

Re: working on urlmon HttpProtocol implementation

2007-07-09 Thread Misha Koshelev
On Mon, 2007-07-09 at 00:45 +0200, Jacek Caban wrote: > I have its incomplete implementation since about 1,5 years, but your > version seems to be about as functional as mine. The reason I didn't > finish it is that I went the native way and wininet is quite not yet > ready for it (it doesn't handl

Re: #2 kernel32: Implement GetTickCount64.

2007-07-09 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > --- a/dlls/ntdll/ntdll.spec > +++ b/dlls/ntdll/ntdll.spec > @@ -178,6 +178,7 @@ > # @ stub NtGetDevicePowerState > @ stub NtGetPlugPlayEvent > @ stdcall NtGetTickCount() > +@ stdcall NtGetTickCount64() > # @ stub NtGetWriteWatch Windows doesn't hav

Re: Mapping of access rights (advapi32/service)

2007-07-09 Thread Paul Vriens
Vitaliy Margolen wrote: Paul Vriens wrote: Hi, While adding some more tests I've found that we lack mapping between some generic access rights and specific service access rights. An example is GENERIC_ALL that should map to SC_MANAGER_ALL_ACCESS. Should this mapping be done in advapi32/serv

Re: Mapping of access rights (advapi32/service)

2007-07-09 Thread Vitaliy Margolen
Paul Vriens wrote: Hi, While adding some more tests I've found that we lack mapping between some generic access rights and specific service access rights. An example is GENERIC_ALL that should map to SC_MANAGER_ALL_ACCESS. Should this mapping be done in advapi32/service.c? Would it be OK to

Re: [1/2] gdi32: Added PolyDraw tests to tests/path.c [try6]

2007-07-09 Thread Alexandre Julliard
"Evan Stade" <[EMAIL PROTECTED]> writes: > +static const path_test_t polydraw_path[] = { > +{0, 0, 6, 0, 0}, /*0*/ > +{10, 10, 2, 0, 0}, /*1*/ > +{10, 15, 3, 0, 0}, /*2*/ > +{100, 100, 6, 0, 0}, /*3*/ > +{95, 95, 2, 0, 0}, /*4*/ > +{10, 10, 2, 0, 0}, /*5*/ > +{10, 15, 3

Re: 0001 Add 2 idl files for d3d10

2007-07-09 Thread Christoph Frick
On Mon, Jul 09, 2007 at 12:52:43PM +0200, Kovács András wrote: > ... > +#define D3D10_VS_OUTPUT_REGISTER_COUNT > ( 16 ) > +#define D3D10_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT > ( 10 ) > +#define D3D10_WHQL_DRAWIND

Re: 0001 Add 2 idl files for d3d10

2007-07-09 Thread Stefan Dösinger
Am Montag, 9. Juli 2007 13:08 schrieb Stefan Dösinger: > Am Montag, 9. Juli 2007 12:52 schrieb Kovács András: > > Hi, > > > > 0001-Add-2-idl-files-for-d3d10.txt > > I checked those .idl files yesterday, and they looked good to me. > dxgitype.idl isn't complete, it just contains two types needed by

Re: 0001 Add 2 idl files for d3d10

2007-07-09 Thread Stefan Dösinger
Am Montag, 9. Juli 2007 12:52 schrieb Kovács András: > Hi, > > 0001-Add-2-idl-files-for-d3d10.txt I checked those .idl files yesterday, and they looked good to me. dxgitype.idl isn't complete, it just contains two types needed by d3d10.idl . That said, I didn't check every single letter against t

Mapping of access rights (advapi32/service)

2007-07-09 Thread Paul Vriens
Hi, While adding some more tests I've found that we lack mapping between some generic access rights and specific service access rights. An example is GENERIC_ALL that should map to SC_MANAGER_ALL_ACCESS. Should this mapping be done in advapi32/service.c? Would it be OK to create a specific f

Re: appdb problem: deleting test data?

2007-07-09 Thread Ben Hodgetts (Enverex)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Currently it doesn't seem to be implemented which is a little annoying. Ben H. Dan Kegel wrote: > How does one delete just one test report? > There's a 'delete version' button but no > 'delete test data' button, and clicking on 'edit' > for the test

Re: programs: Add extrac32 (empty program)

2007-07-09 Thread James Hawkins
On 7/9/07, Anatoly Lyutin <[EMAIL PROTECTED]> wrote: James Hawkins wrote: > On 7/6/07, Anatoly Lyutin <[EMAIL PROTECTED]> wrote: >> Yesterday I post a first version of extrac32. I expected that this >> version would be filled with bugs but I thought that would be better to >> apply this version b

Re: [PATCH 1/2] urlmon/tests: Add tests for ObtainUserAgentString.

2007-07-09 Thread James Hawkins
On 7/8/07, Misha Koshelev <[EMAIL PROTECTED]> wrote: Tested on Win98 and WinXP. if (1)'s for wine page faults are removed in the second patch of the set. I don't know whether Julliard will accept these patches as they are, but the policy about disabling blocks of tests because they fail on Wi

EV_RXFLAG emulation

2007-07-09 Thread Valentine Sinitsyn
Hi all, I spent the last couple of days trying to run one program in Wine. The program (Easy Wireless Net, end-user tool to control many CDMA modems, if you are interested in) extensively use EV_RXFLAG event which is currently unimplemented in Wine. I've made a simplest implementation possible (fi