An application sends a ZGM_GETCDATE message to convert a given julian date into a date string in 'YYYY/MM/DD' format.
ZGM_GETCDATE
wParam = (WPARAM) (int) iJulianDate; //julian date
lParam = (LPARAM) lpszString; //pointer to string to return converted julian date as text in 'YYYY/MM/DD' format.
The string must be previously allocated and have a minimum length of 11 characters. Failure to preallocate this string will result in undefined behavior, possibly resulting in data loss and/or program crash.
This message returns TRUE if the julian date is valid, otherwise it returns FALSE.
Preallocate the string in lParam with at least 11 characters.