C#의 tick 으로 변환

C++ 2012. 5. 20. 15:56



INT64 getLocalTime()

{

// 현재 시간

SYSTEMTIME current_time;

GetLocalTime(&current_time);


// FILETIME으로 변환

FILETIME file_time;

SystemTimeToFileTime(&current_time, &file_time);


LARGE_INTEGER li;

li.HighPart = file_time.dwHighDateTime;

li.LowPart = file_time.dwLowDateTime;


return (static_cast<INT64>(li.QuadPart) + 504911232000000000); //1601-01-01 00:00:00.0000000 더하기

}


'C++' 카테고리의 다른 글

google break pad  (0) 2012.05.23
ActiveX에서 exe 호출시 주의할 점  (0) 2012.05.20
c++ 프로그램에서 web html과 통신  (0) 2012.05.20
log4cxx 코딩으로 로거 생성 샘플  (0) 2012.05.20
URL encoding  (0) 2012.05.20
endian 변환민 serialize  (0) 2012.05.20
암호화 : RSA, AES, BASE64  (0) 2012.05.20
간단한 sync 소켓 사용  (0) 2012.05.20