Platform/util
-
-
시간 - Win32Platform/util 2009. 1. 19. 18:38
GetTickCount() timeGetTime() GetLocalTime() GetSystemTime() GetProcessTimes() FileTimeToSystemTime() SystemTimeToFileTime() SYSTEMTIME time; GetLocalTime(&time); char buf[100]; wsprintf(buf, "The current time is %02d : %02d : %02d", time.wHour, time.wMinute, time.wSecond); QueryPerformanceFrequency() QueryPerformanceCounter() 참조 사이트: http://www.gpgstudy.com/gpgiki/%EC%8B%9C%EA%B0%84%20%EB%8B%A4%..
-
시간 - MFCPlatform/util 2008. 12. 12. 23:38
CTime .GetCurrentTime() // static .GetYear() .GetMonth() .GetDay() .GetHour() .GetMinute() .GetSecond() .Format() .+() .-() CTimeSpan CTime timer = CTime::GetCurrentTime(); //현재 시간을 얻음 m_strTimer.Format("현재는 %d년 %d월 %d일 %d시 %d분 %d초", timer.GetYear(), timer.GetMonth(), timer.GetDay(), timer.GetHour(), timer.GetMinute(), timer.GetSecond()); COleDateTime .GetCurrentTime() // static .GetYear() .GetM..