В сообщении от 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
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
> "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
"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)