Re: kernel32: Add test MultiByteToWideChar for code page is 936. (try 2)
5 Feb
2016
5 Feb
'16
11:55 a.m.
Changhui LIU <chliu027028(a)gmail.com> writes:
+ BOOL vistaOrLater = FALSE; + OSVERSIONINFOA osvi; + + memset(&osvi, 0, sizeof(osvi)); + osvi.dwOSVersionInfoSize = sizeof(osvi); + GetVersionExA(&osvi); + vistaOrLater = (osvi.dwMajorVersion > 5);
Please don't do version checks in tests. You can mark the old behavior as broken if necessary. -- Alexandre Julliard julliard(a)winehq.org
3597
Age (days ago)
3597
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard