http://bugs.winehq.org/show_bug.cgi?id=7712
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-14-03 17:23 ------- Created an attachment (id=5357) --> (http://bugs.winehq.org/attachment.cgi?id=5357&action=view) executable with same problem
I can reproduce this by creatin simple window , and do it like:
const char g_szClassName[] = "WeatherScopeAlert"; const WCHAR windowname[] = { 'u', 'n', 't', 'i', 't', 'l', 'e','d', 0 };
hwnd = CreateWindowEx( 0, g_szClassName, windowname, WS_OVERLAPPEDWINDOW, 32, 32, 0xfa, 0xfa, NULL, NULL, hInstance, NULL);
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so.
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-14-03 17:24 ------- Created an attachment (id=5358) --> (http://bugs.winehq.org/attachment.cgi?id=5358&action=view) executable with same problem
I can reproduce this by creatin simple window , and do it like:
const char g_szClassName[] = "WeatherScopeAlert"; const WCHAR windowname[] = { 'u', 'n', 't', 'i', 't', 'l', 'e','d', 0 };
hwnd = CreateWindowEx( 0, g_szClassName, windowname, WS_OVERLAPPEDWINDOW, 32, 32, 0xfa, 0xfa, NULL, NULL, hInstance, NULL);
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so.
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-14-03 17:24 ------- Created an attachment (id=5359) --> (http://bugs.winehq.org/attachment.cgi?id=5359&action=view) executable with same problem
I can reproduce this by creatin simple window , and do it like:
const char g_szClassName[] = "WeatherScopeAlert"; const WCHAR windowname[] = { 'u', 'n', 't', 'i', 't', 'l', 'e','d', 0 };
hwnd = CreateWindowEx( 0, g_szClassName, windowname, WS_OVERLAPPEDWINDOW, 32, 32, 0xfa, 0xfa, NULL, NULL, hInstance, NULL);
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so.
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-14-03 17:25 ------- Created an attachment (id=5360) --> (http://bugs.winehq.org/attachment.cgi?id=5360&action=view) executable with same problem
I can reproduce this by creatin simple window , and do it like:
const char g_szClassName[] = "WeatherScopeAlert"; const WCHAR windowname[] = { 'u', 'n', 't', 'i', 't', 'l', 'e','d', 0 };
hwnd = CreateWindowEx( 0, g_szClassName, windowname, WS_OVERLAPPEDWINDOW, 32, 32, 0xfa, 0xfa, NULL, NULL, hInstance, NULL);
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so.
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-15-03 03:44 ------- test
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-15-03 03:46 ------- test
------- Additional Comments From infyquest@gmail.com 2007-15-03 06:37 ------- may its internally using some ansi version of functions.
------- Additional Comments From infyquest@gmail.com 2007-15-03 06:37 ------- may its internally using some ansi version of functions.
------- Additional Comments From focht@gmx.net 2007-15-03 07:42 ------- Hello,
-- snip --- I can reproduce this by creatin simple window , and do it like:
...
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so. --- snip ---
Your code snippet shows normal behaviour (even on windows).
The binary references ansi versions of win32 api. E.g. CreateWindowEx gets compiled into CreateWindowExA (ansi version). You supply a unicode string as window name. What would you expect? "u" of course.
Regards
------- Additional Comments From focht@gmx.net 2007-15-03 07:42 ------- Hello,
-- snip --- I can reproduce this by creatin simple window , and do it like:
...
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so. --- snip ---
Your code snippet shows normal behaviour (even on windows).
The binary references ansi versions of win32 api. E.g. CreateWindowEx gets compiled into CreateWindowExA (ansi version). You supply a unicode string as window name. What would you expect? "u" of course.
Regards
------- Additional Comments From focht@gmx.net 2007-15-03 07:43 ------- Hello,
-- snip --- I can reproduce this by creatin simple window , and do it like:
...
Looks buggy to me, but maybe windows displays this text correctly, i cannot test this little executable on windows, so maybe someone else could do so. --- snip ---
Your code snippet shows normal behaviour (even on windows).
The binary references ansi versions of win32 api. E.g. CreateWindowEx gets compiled into CreateWindowExA (ansi version). You supply unicode string as window name. What would you expect? "u" of course.
Regards
------- Additional Comments From rmay@ou.edu 2007-15-03 15:50 ------- Well, I'm not sure about "normal", since Weatherscope has proper window titles on Windows but not under wine.