Re: [try 2] Move console input/output codepages to server - what's wrong?

2007-05-07 Thread Kirill K. Smirnov
В сообщении от 30 апреля 2007 16:26 вы написали: > Hi, > A week ago I've sent a patch which fixes console input/output codepages > handling. > http://www.winehq.org/pipermail/wine-patches/2007-April/038429.html > It is still not applied, so please, explain, what is wrong with it? It even > fixes

[try 2] Move console input/output codepages to server - what's wrong?

2007-04-30 Thread Kirill K. Smirnov
Hi, A week ago I've sent a patch which fixes console input/output codepages handling. http://www.winehq.org/pipermail/wine-patches/2007-April/038429.html It is still not applied, so please, explain, what is wrong with it? It even fixes 2 tests: $wine kernel32_test.exe.so process before: proce

Re: Move console input/output codepages to server

2007-04-20 Thread Kirill K. Smirnov
> "Kirill K. Smirnov" <[EMAIL PROTECTED]> wrote: > > @@ -141,12 +138,19 @@ HWND WINAPI GetConsoleWindow(VOID) > > */ > > UINT WINAPI GetConsoleCP(VOID) > > { > > -if (!console_input_codepage) > > +BOOL ret; > > +UINT codepage = GetOEMCP(); /* default value */ > > + > > +SERVER_S

Re: Move console input/output codepages to server

2007-04-19 Thread Dmitry Timoshkov
"Kirill K. Smirnov" <[EMAIL PROTECTED]> wrote: @@ -141,12 +138,19 @@ HWND WINAPI GetConsoleWindow(VOID) */ UINT WINAPI GetConsoleCP(VOID) { -if (!console_input_codepage) +BOOL ret; +UINT codepage = GetOEMCP(); /* default value */ + +SERVER_START_REQ(get_console_input_info)