Searched refs:asDateTime (Results 1 – 1 of 1) sorted by relevance
| /trunk/main/shell/source/win32/shlxthandler/util/ |
| H A D | iso8601_converter.cxx | 45 std::string asDateTime = WStringToString( ws8601DateTime ); in iso8601_date_to_local_date() local 47 … DateTime.wYear = ( unsigned short )strtol( asDateTime.substr( 0, 4 ).c_str(), NULL, 10 ); in iso8601_date_to_local_date() 48 … DateTime.wMonth = ( unsigned short )strtol( asDateTime.substr( 5, 2 ).c_str(), NULL, 10 ); in iso8601_date_to_local_date() 50 … DateTime.wDay = ( unsigned short )strtol( asDateTime.substr( 8, 2 ).c_str(), NULL, 10 ); in iso8601_date_to_local_date() 51 … DateTime.wHour = ( unsigned short )strtol( asDateTime.substr( 11,2 ).c_str(), NULL, 10 ); in iso8601_date_to_local_date() 52 … DateTime.wMinute = ( unsigned short )strtol( asDateTime.substr( 14,2 ).c_str(), NULL, 10 ); in iso8601_date_to_local_date() 53 … DateTime.wSecond = ( unsigned short )strtol( asDateTime.substr( 17,2 ).c_str(), NULL, 10 ); in iso8601_date_to_local_date() 69 ws8601DateTime = StringToWString( asDateTime ); in iso8601_date_to_local_date() 88 ws8601DateTime = StringToWString( asDateTime ); in iso8601_date_to_local_date()
|