Re: [2/2] msvcrt: Forward strftime() to wcsftime(). Take 2.

2012-01-11 Thread Dmitry Timoshkov
Alexandre Julliard wrote: > The overflow handling still looks suspicious. It probably needs some > more test cases. I'm probably missing something, why new attempt is marked as pending? -- Dmitry.

Re: MacOS recording audio - chunking 4096 frames

2012-01-11 Thread Ken Thomases
On Jan 10, 2012, at 7:36 AM, joerg-cyril.hoe...@t-systems.com wrote: > looking at mmdevapi/tests/capture logs, I found 2 issues > > 1. the 5 buffers initially sent are all returned with 0 bytes > So I added a loop to return empty buffers to the audio input queue, > such that GetBuffer returns dat

Re: Vista/w2k8/w7 users, please test mmdevapi capture

2012-01-11 Thread Jerome Leclanche
Two runs, one after the other. W7 home premium, samsung r780 laptop. C:\Users\samsung\Downloads>mmdevapi_test.exe capture capture.c:663: Returned periods: 10.1587 ms 3. ms capture.c:675: pwfx: 002CB8D8 capture.c:676: Tag: fffe capture.c:677: bits: 32 capture.c:678: chan: 2 capture.c:679: rate:

Re: Vista/w2k8/w7 users, please test mmdevapi capture

2012-01-11 Thread Matijn Woudt
On Wed, Jan 11, 2012 at 9:51 AM, wrote: > Hi, > > you don't need a microphone, just a capture capable sound card, unlike > testbot. > > Please download mmdevapi_test32|64.exe from testbot: > http://testbot.winehq.org/JobDetails.pl?Key=16376 > run: > mmdevapi_test capture > and post or send me th

Re: mscoree: Implement DllGetClassObject

2012-01-11 Thread Vincent Povirk
> I found if you used GetIUnknownForObject and then queried for the IDispatch > interface, mono returned E_NOINTERFACE. Maybe this is a bug with mono. If that's true, using IDispatch instead of IUnknown is probably not an acceptable work-around, as we don't know how that works when a class explici

Re: Rethinking WineConf

2012-01-11 Thread Stefan Dösinger
Am Dienstag, 10. Januar 2012, 23:00:38 schrieb Marcus Meissner: > - Users ... as this was brought up > > Reality check: Wine users will not travel 100s of kms to a standalone > conference. > > This would make sense only if we attach wineconf to another general > conference An unconventional t

Re: [PATCH 3/5] d3d9: Don't expose wined3d internal flags to the application.

2012-01-11 Thread Alexandre Julliard
Henri Verbeet writes: > Yeah, I don't usually run the d3dx9 tests, I should probably add them. > Please use the attached patch instead. When sending an updated patch like this, could you please send to wine-patches so that it goes into the patch tracker? That makes it easier for me to handle. T

Re: [PATCH 3/5] d3d9: Don't expose wined3d internal flags to the application.

2012-01-11 Thread Henri Verbeet
On 2012-01-11 14:31, Alexandre Julliard wrote: > Henri Verbeet writes: > >> --- >> dlls/d3d9/buffer.c|4 ++-- >> dlls/d3d9/cubetexture.c |2 +- >> dlls/d3d9/surface.c |2 +- >> dlls/d3d9/texture.c |2 +- >> dlls/d3d9/volume.c|2 +- >> dlls/d3d9/v

Re: [PATCH 3/5] d3d9: Don't expose wined3d internal flags to the application.

2012-01-11 Thread Alexandre Julliard
Henri Verbeet writes: > --- > dlls/d3d9/buffer.c|4 ++-- > dlls/d3d9/cubetexture.c |2 +- > dlls/d3d9/surface.c |2 +- > dlls/d3d9/texture.c |2 +- > dlls/d3d9/volume.c|2 +- > dlls/d3d9/volumetexture.c |2 +- > 6 files changed, 7 insertions(

Re: httpapi: add method stub for HttpAddUrl()

2012-01-11 Thread Henri Verbeet
On 11 January 2012 12:56, Nikolay Sivov wrote: > On 1/11/2012 13:41, Arash Cordi wrote: > >> + >> +ULONG WINAPI HttpAddUrl( HANDLE handle, PCWSTR url, PVOID reserved ) >> +{ >> +    FIXME( "(%p %p %p): stub!\n", handle, url, reserved); >> +    return ERROR_CALL_NOT_IMPLEMENTED; >> +} >> + > > Plea

Re: [PATCH 1/5] ddraw/tests: Add some clipper tests.

2012-01-11 Thread Henri Verbeet
On 7 January 2012 10:47, Saulius Krasuckas wrote: > These tests fail on real machines (running XP and w7) with nVidia cards > (FX5200 and GF 310M): > > http://test.winehq.org/data/b00e7039c5fcaa613b9776a38fe60bb697146b42/index_XP.html#ddraw:ddraw1 > http://test.winehq.org/data/a86b765a50cdf76e66c8

Re: What other conferences do Wine people attend?

2012-01-11 Thread Marcus Meissner
On Tue, Jan 10, 2012 at 02:55:33PM -0800, Dan Kegel wrote: > In the wineconf thread, the question came up: > What other conferences people do wine developers/users attend, if any? > > If you send me the names of the conference(s) you attended in the last > two years, > I'll summarize for the list.

Re: httpapi: add method stub for HttpAddUrl()

2012-01-11 Thread Nikolay Sivov
On 1/11/2012 13:41, Arash Cordi wrote: + +ULONG WINAPI HttpAddUrl( HANDLE handle, PCWSTR url, PVOID reserved ) +{ +FIXME( "(%p %p %p): stub!\n", handle, url, reserved); +return ERROR_CALL_NOT_IMPLEMENTED; +} + Please use %s format for 'url' so it will be visible in logs.

Re: cryptui: Use the same capitalization for the same string

2012-01-11 Thread Francois Gouget
On Wed, 11 Jan 2012, Francois Gouget wrote: [...] > Group box labels are supposed to use sentence-style capitalization: > http://msdn.microsoft.com/en-us/library/aa511459.aspx > > But dialog box titles are supposed to use title-style capitalization, > hence the case difference: > http://msdn.mic

Re: mscoree: Implement DllGetClassObject

2012-01-11 Thread Alistair Leslie-Hughes
Hi Vincent, On 11/01/2012 5:13 PM, Vincent Povirk wrote: You can't just use a static class factory for all the classes. There's no need for GetIDispatchForObject when we already have GetIUnknownForObject (and all you use is QueryInterface). I found if you used GetIUnknownForObject and then quer

Vista/w2k8/w7 users, please test mmdevapi capture

2012-01-11 Thread Joerg-Cyril . Hoehle
Hi, you don't need a microphone, just a capture capable sound card, unlike testbot. Please download mmdevapi_test32|64.exe from testbot: http://testbot.winehq.org/JobDetails.pl?Key=16376 run: mmdevapi_test capture and post or send me the results -- not just the failures, the console output too in

Re: cryptui: Use the same capitalization for the same string

2012-01-11 Thread Francois Gouget
On Tue, 10 Jan 2012, André Hentschel wrote: > So that the string needs only one translation in po files - GROUPBOX "Certification path", -1,6,10,245,165, BS_GROUPBOX + GROUPBOX "Certification Path", -1,6,10,245,165, BS_GROUPBOX Unfortunately this goes against the Windows User Experience Intera