블로그는 나의 힘!
[ Programing ]/C++2020. 12. 23. 11:36

// 현재 시간
const DATE dtNow = Framework::Instance()->CurrentDate();

// 설정된 시간. 현재 시간 + 1일 9시 
COleDateTimeSpan tAddTime( 1, 9, 0, 0 );
DATE dtCustom = dtNow + tAddTime;

int nReturnTime = 0;
if(dtNow > dtCustom)
{
     COleDateTimeSpan sp( dtCustom - dtNow );
     //nReturnTime = (int)sp.GetTotalMinutes();     // 분
     nReturnTime = (int)sp.GetTotalSeconds();     // 초
}
 

Posted by Mister_Q