DecodeDate

Description
½Ã½ºÅÛ ³»ºÎÀÇ Çü½ÄÀ¸·Î Ç¥ÇöµÇ¾î ÀÖ´Â ³¯Â¥ °ªÀ» ³â, ¿ù, ÀÏ·Î ³ª´©¾î º¯È¯ÇØÁØ´Ù.

Syntax
void DecodeDate(U32 LDate, P_U16 LYear, P_U16 LMonth, P_U16 LDay)

Parameters
LDate ½Ã½ºÅÛ ³»ºÎ Çü½ÄÀÇ ³¯Â¥ °ª
LYear º¯È¯µÈ ¿¬µµ
LMonthº¯È¯µÈ ¿ù
LDayº¯È¯µÈ ÀÏ

Returns
¾øÀ½

Comments

See Also
EncodeDate

Example
U32 date;
U16 year, month, day;
date = EncodeDate( 1998, 12, 25 );
DecodeDate( date, &year, &month, &day );
// at this point, year = 1998, month = 12, day = 25