Re: GSoC-2011: Implement Missing Mesh Functions in Wine’s D3DX9

2011-04-25 Thread Dylan Smith
On Sun, Mar 20, 2011 at 1:09 PM, Michael Mc Donnell wrote: > I would like implement some of the missing mesh functions in Wine's > D3DX9 for Google Summer of Code 2011. I would like to implement the > following functions: >  - CloneMesh >  - CloneMeshFVF >  - ConvertPointRepsToAdjacency >  - Conve

Re: Google Summer of Code 2011 is on!

2011-04-25 Thread James McKenzie
On 4/25/11 4:02 PM, Austin English wrote: We've got five projects this year: Jay Yang - Implement the Explorer - http://socghop.appspot.com/gsoc/project/google/gsoc2011/yangjay/8001 Lucas Fialho Zawacki - Implementation of DirectInput8 Action Mapping feature - http://socghop.appspot.com/gsoc/proj

Re: dinput/tests: Initial tests for Action Mapping. Added some tests for the creation of a DirectInput8 Interface and a dummy call of EnumDevicesBySemantics.

2011-04-25 Thread Austin English
On Sun, Apr 24, 2011 at 18:12, Lucas Fialho Zawacki wrote: Howdy Lucas, > +    hr = CoCreateInstance(&CLSID_DirectInput8, 0, 1, &IID_IDirectInput8A, > (LPVOID*)&pDI); > +    if (hr == DIERR_OLDDIRECTINPUTVERSION || > +        hr == DIERR_BETADIRECTINPUTVERSION || > +        hr == REGDB_E_CLASSN

Google Summer of Code 2011 is on!

2011-04-25 Thread Austin English
We've got five projects this year: Jay Yang - Implement the Explorer - http://socghop.appspot.com/gsoc/project/google/gsoc2011/yangjay/8001 Lucas Fialho Zawacki - Implementation of DirectInput8 Action Mapping feature - http://socghop.appspot.com/gsoc/project/google/gsoc2011/lfzawacki/8001 Michael M

Re: VarDateFromStr parses yyyy-mm-dd as yyyy-dd-mm in European locales

2011-04-25 Thread John Fremlin
Dan Kegel writes: > Nikolay wrote: >>> Who has authority to approve it? >> A patch? Alexandre Julliard, he's the only project maintainer. >> Send a patch to wine-patches at winehq.org when you think >> it's ready and you'll get some feedback if it's not. > > Be sure to send it to winetestbot firs

Re: ERROR: Compile wine tests on WINDOWS with MS C/C++

2011-04-25 Thread Austin English
On Sat, Apr 23, 2011 at 11:03, Gerold Jens Wucherpfennig wrote: > Regarding: > > 5.5.4. Standalone, using the Microsoft C++ Toolkit > > of > > http://www.winehq.org/docs/winedev-guide/testing-windows : > > > > I tried to compile dlls/rasapi32/test/rasapi.c  on  Windows > > and got these error mess

Re: [PATCH 6/6] mmdevapi/tests: Add tests for IAudioClock

2011-04-25 Thread Alexandre Julliard
Andrew Eikum writes: > +pcpos = 0; > +hr = IAudioClock_GetPosition(acl, &pos, &pcpos); > +ok(hr == S_OK, "GetPosition failed: %08x\n", hr); > +ok(pos == 0, "GetPosition returned non-zero pos before being started: > %lld\n", pos); Please avoid %ll formats. -- Alexandre Julliard

Re: [PATCH 3/6] wineoss.drv: Add MMDevAPI driver

2011-04-25 Thread Alexandre Julliard
Andrew Eikum writes: > +{ > +int i, mixer_fd; > +oss_sysinfo sysinfo; > +static int print_once = 0; > + > +TRACE("%d %p %p %p\n", flow, ids, num, def_index); > + > +mixer_fd = open("/dev/mixer", O_RDONLY, 0); > +if(mixer_fd < 0){ > +ERR("OSS /dev/mixer doesn't seem

Re: [PATCH 1/2] mountmgr: Populate HKLM\HARDWARE\DEVICEMAP\Scsi here instead of in kernel32. (try 2)

2011-04-25 Thread Alexandre Julliard
Charles Davis writes: > On 4/25/11 5:01 AM, Alexandre Julliard wrote: >> Charles Davis writes: >> >>> Try 2: don't depend on the existence of scsi-generic entries in the HAL >>> tree. >> >> It's still not listing my /dev/hda CD drive. > Hmm... which IDE driver is your kernel using, the "legac

Re: [PATCH 1/2] mountmgr: Populate HKLM\HARDWARE\DEVICEMAP\Scsi here instead of in kernel32. (try 2)

2011-04-25 Thread Charles Davis
On 4/25/11 5:01 AM, Alexandre Julliard wrote: > Charles Davis writes: > >> Try 2: don't depend on the existence of scsi-generic entries in the HAL tree. > > It's still not listing my /dev/hda CD drive. Hmm... which IDE driver is your kernel using, the "legacy" driver or the new libata-based driv

Re: [PATCH 1/2] mountmgr: Populate HKLM\HARDWARE\DEVICEMAP\Scsi here instead of in kernel32. (try 2)

2011-04-25 Thread Alexandre Julliard
Charles Davis writes: > Try 2: don't depend on the existence of scsi-generic entries in the HAL tree. It's still not listing my /dev/hda CD drive. -- Alexandre Julliard julli...@winehq.org

Re: [PATCH 1/3] d3dx9: Implement ID3DXBaseEffect::GetParameterByName().

2011-04-25 Thread Rico Schüller
Am 21.04.2011 16:46, schrieb Henri Verbeet: 2011/4/20 Rico Schüller: +inline LPSTR get_partial_string(LPCSTR name, char initial, char final) That should probably be static instead of inline. Also, get_parameter_by_name() looks like it could be split up, and you can probably avoid the copy in ge