Is there an easy way, without providing a dateStamp for FormatDate(), to get the Locale month names?
FormatDate(Locale,"%B",NULL,&putCharHook);
gives me January.
strcpy(CurrentMonth,Locale->MonthNames[11]);
to get November (or 10 if starting at 0) in current user's language.
Same for weekday names.
Try this (copy&paste from DateTime.docky sources), you need to open LocaleBase/ILocale:
for weekdays maybe change to use 'DAY_1', not in front of my miggy now.
AOS4.1/SAM460ex/PPC460EX-1155MHZ/2048MB/RadeonHD6570/SSD120GB/DVDRW :-P
Excellent. That was what I needed. Thanks.