EncodeDate
Description
³â,¿ù,ÀÏÀÇ °¢ °ªÀ» ÇÕÃļ ½Ã½ºÅÛ ³»ºÎÀÇ Çü½ÄÀ¸·Î º¯È¯ÇØÁØ´Ù.
Syntax
U32 EncodeDate(U16 LYear, U16 LMonth, U16 LDay)
Parameters
LYear | ¿¬µµ |
LMonth | ¿ù |
LDay | ÀÏ |
Returns
½Ã½ºÅÛ ³»ºÎ Çü½ÄÀ¸·Î º¯È¯µÈ ³¯Â¥
Comments
See Also
DecodeDate
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