Re: Win32HandleToDosFileHandle / DosFileHandleToWin32Handle

2006-01-27 Thread Derek Fawcus
On Fri, Jan 27, 2006 at 09:24:13PM +0100, Eric Pouech wrote: > Derek Fawcus wrote: > > I'm looking to do some changes to the wine vdm - or more accurately > > to the winedos dll to make the handling for some DOS applications > > more useful. This is mainly driven from a desire to run DOS apps > >

Re: setupapi: unimplemented function setupapi.dll.SetupPromptReboot

2006-01-27 Thread James Hawkins
On 1/27/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > * On Fri, 27 Jan 2006, James Hawkins wrote: > > * On 1/27/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > > > > > > Is anyone working on this for Wine? > > > Any ideas about the ReactOS code? > > > > Read through it thoroughly and make n

Re: USER: creating 16bit windows convert null instances to current process (try #3, should work now)

2006-01-27 Thread Joseph Garvin
It's been a about a month since I sent this in and it still hasn't been applied. Is there something wrong with the patch? Joseph Garvin wrote: Fixed up the patch according to Dmitry's suggestions :) Changelog Fixed instance = 0 not converted to the current process when making a window. Brok

key is sending an extra char when NumLock is ON

2006-01-27 Thread penna
Hi, I was looking at an old problem I have with wine and saw some record at the wine-devel and wine-users lists that I think are related with the same problem. Look at: http://www.winehq.org/hypermail/wine-users/2004.03.txt (look for "get a comma on the place" in your browser) and also

Re: tape.c: remove bogus breaks

2006-01-27 Thread Hans Leidekker
On Friday 27 January 2006 22:13, Michael Stefaniuc wrote: > are those breaks realy supposed to be there? Smatch was complaining > about unreachable code. No, those breaks don't belong there, your patch is correct. -Hans

Re: setupapi: unimplemented function setupapi.dll.SetupPromptReboot

2006-01-27 Thread Steven Edwards
Hi, On 1/27/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > Is anyone working on this for Wine? > Any ideas about the ReactOS code? The shutdown code ExitWindowsEx calls is a complex beast. Its something like 40 steps all of which were not implemented so it was disabled until the rest of the p

Re: setupapi: unimplemented function setupapi.dll.SetupPromptReboot

2006-01-27 Thread Saulius Krasuckas
* On Fri, 27 Jan 2006, James Hawkins wrote: > * On 1/27/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > > > > Is anyone working on this for Wine? > > Any ideas about the ReactOS code? > > Read through it thoroughly and make note of all the details of the > function. Then write as many test ca

Re: setupapi: unimplemented function setupapi.dll.SetupPromptReboot

2006-01-27 Thread James Hawkins
On 1/27/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > I stuck upon this function right now. And I see ReactOS folks already > have some implementation [*], but for some reason it is disabled. > > Is anyone working on this for Wine? > Any ideas about the ReactOS code? > Start off by reading t

Re: Win32HandleToDosFileHandle / DosFileHandleToWin32Handle

2006-01-27 Thread Eric Pouech
Derek Fawcus wrote: I'm looking to do some changes to the wine vdm - or more accurately to the winedos dll to make the handling for some DOS applications more useful. This is mainly driven from a desire to run DOS apps without a wineconsole, so using the unix stdin/stdout/stderr as the DOS file

setupapi: unimplemented function setupapi.dll.SetupPromptReboot

2006-01-27 Thread Saulius Krasuckas
I stuck upon this function right now. And I see ReactOS folks already have some implementation [*], but for some reason it is disabled. Is anyone working on this for Wine? Any ideas about the ReactOS code? [*] http://www.reactos.org/generated/doxygen/d4/d55/lib_2setupapi_2stubs_8c-source.html

Re: user: fix DrawTextExA/W on empty strings.

2006-01-27 Thread Bill Medland
On January 25, 2006 10:49 am, Rein Klazes wrote: > On Wed, 25 Jan 2006 07:49:57 -0800 (PST), you wrote: > >Hi Rein, > > > >-if (!str) return 0; > >+if (!str || count == 0) return 0; > > if (count == -1) count = strlenW(str); > >-if (count == 0) return 0; > >+if (count == 0) { >

Re: opengl: Sync a dibsection to its pixmap before drawing to it via opengl

2006-01-27 Thread Alexandre Julliard
Huw D M Davies <[EMAIL PROTECTED]> writes: > +void enter_gl(void) > +{ > +GLXContext gl_ctx; > +Wine_GLContext *ctx; > +enum x11drv_escape_codes escape = X11DRV_SYNC_PIXMAP; > + > +wine_tsx11_lock_ptr(); /* unlock in LEAVE_GL */ > +gl_ctx = glXGetCurrentContext(); > +if(!gl

Re: StretchDIBits function problem.

2006-01-27 Thread Willie Sippel
Am Freitag, 27. Januar 2006 00:57 schrieb Alex Villací­s Lasso: > Cyril Margorin wrote: > > Hello, > > > > I've discovered, that using of GetDIBits after StretchDIBits doesn't > > return correct data. > > More then - all pixels that it returns are black. > > In attachment the test function. > > > >

Re: Global hooks problems (WH_MOUSE_LL)

2006-01-27 Thread Vitaliy Margolen
Thursday, January 26, 2006, 12:43:58 PM, Alexandre Julliard wrote: > Vitaliy Margolen <[EMAIL PROTECTED]> writes: >> It does work thank you. The only question I have : does that cover >> WINEVENT_OUTOFCONTEXT hooks too? > No, that's a different mechanism. Do you have evidence that they are > curr