https://bugs.winehq.org/show_bug.cgi?id=16481
Damjan Jovanovic damjan.jov@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |damjan.jov@gmail.com
--- Comment #3 from Damjan Jovanovic damjan.jov@gmail.com --- Given that Far Manager no longer starts in Wine, please provide another application that can be used to test?
I've tried writing test code with no success:
Changing "M/d/yyyy" to "dd.MM.yyyy" in HKCU\Control Panel\International in the sShortDate key,
changes 11/28/2019 to 28.11.2019
as the output from this code:
#include <stdio.h> #include <windows.h>
int main(int argc, char **argv) { int ret; char dateBuffer[1024]; ret = GetDateFormatA(LOCALE_USER_DEFAULT, DATE_SHORTDATE, NULL, NULL, dateBuffer, sizeof(dateBuffer)); printf("ret=%d\n"); printf("%s\n", dateBuffer); return 0; }