Re: oleaut32 1/2: [RESEND 2] Implements function varformat:VarWeekdayName
28 Sep
2006
28 Sep
'06
11:57 a.m.
"Benjamin Arai" <me(a)benjaminarai.com> writes:
+ if (fAbbrev) + if (iFirstDay == 0) + localeValue = LOCALE_SABBREVDAYNAME1 + ((iWeekday + iFirstDay + 5) % 7); + else + localeValue = LOCALE_SABBREVDAYNAME1 + ((iWeekday + iFirstDay + 4) % 7); + else + if (iFirstDay == 0) + localeValue = LOCALE_SDAYNAME1 + ((iWeekday + iFirstDay + 5) % 7); + else + localeValue = LOCALE_SDAYNAME1 + ((iWeekday + iFirstDay + 4) % 7);
iFirstDay == 0 is supposed to mean system default, but that is locale-dependent, you can't simply hardcode it. -- Alexandre Julliard julliard(a)winehq.org
7018
Age (days ago)
7018
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard