21 #include"../../../core/ttypes.hpp"
33 ::GetSystemTime(&time);
34 ss<<std::setw(2)<<std::setfill(
_T(
'0'))<<time.wHour<<
_T(
':')
35 <<std::setw(2)<<std::setfill(
_T(
'0'))<<time.wMinute<<
_T(
':')
36 <<std::setw(2)<<std::setfill(
_T(
'0'))<<time.wSecond<<
_T(
'.')
37 <<std::setw(3)<<std::setfill(
_T(
'0'))<<time.wMilliseconds<<
_T(
" - ")
38 <<std::setw(2)<<std::setfill(
_T(
'0'))<<time.wDay<<
_T(
'/')
39 <<std::setw(2)<<std::setfill(
_T(
'0'))<<time.wMonth<<
_T(
'/')
40 <<std::setw(2)<<std::setfill(
_T(
'0'))<<time.wYear;