Re: kernel32: add stubs for GetConsoleCommandHistoryLengthA/W

2012-01-19 Thread Dmitry Timoshkov
Austin English wrote: > +DWORD WINAPI GetConsoleCommandHistoryLengthA(LPSTR unknown) > +{ > +FIXME(": (%s) stub!\n", unknown); > +SetLastError(ERROR_CALL_NOT_IMPLEMENTED); > +return 0; > +} > + > +/* Undocumented, called by native doskey.exe */ > +/* FIXME: Should use CONSOLE_GetHisto

Re: "Sound" keyword on bugzilla

2012-01-19 Thread Austin English
On Wed, Jan 18, 2012 at 13:25, Andrew Eikum wrote: > On Wed, Jan 18, 2012 at 07:03:24PM +, Jerome Leclanche wrote: >> Any comments? >> > > Seems like a useful idea to me, though I'd defer to the heavier > Bugzilla users' opinions. > > Andrew > >> On Tue, Jan 17, 2012 at 1:09 AM, Jerome Leclanc

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-19 Thread Andrew Eikum
On Thu, Jan 19, 2012 at 08:22:11PM +, The Edmeades wrote: > I'll resend, and thanks for working this through with me! > Before you resend, please fix your mail client to put your real name in the From: header, as I believe you are named Jason and not The :) Andrew

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-19 Thread The Edmeades
(Apologies, the building on windows was the tests not the main richedit... as I built the tests with high warnings to try to minimize the pain when I got to Linux) Ok... I agree with you, and worked out why I was doing it and user error comes in...! I was copying the line above and using &endlv10

Re: [2/2] mshtml: Forward SID_SContainerDispatch from a script host

2012-01-19 Thread Jacek Caban
Hi Nikolay, On 01/18/12 23:18, Nikolay Sivov wrote: > Forward SID_SContainerDispatch from a script host Please add a test. Jacek

Re: [1/2] mshtml: Respond to SID_SContainerDispatch service id

2012-01-19 Thread Jacek Caban
Hi Nikolay, On 01/18/12 23:18, Nikolay Sivov wrote: > Respond to SID_SContainerDispatch service id +if(IsEqualGUID(&SID_SContainerDispatch, guidService)) { +TRACE("SID_SContainerDispatch\n"); +return IHTMLDocument2_QueryInterface(&This->IHTMLDocument2_iface, riid, ppv); +