| 17 | char dateString[11]; |
| 18 | |
| 19 | struct tm GetUnixBuildTime() |
| 20 | { |
| 21 | auto nt_header = reinterpret_cast<const IMAGE_NT_HEADERS*>( reinterpret_cast<BYTE*>( &__ImageBase ) + __ImageBase.e_lfanew ); |
| 22 | __time64_t t = nt_header->FileHeader.TimeDateStamp; |
| 23 | struct tm ptm; |
| 24 | _gmtime64_s( &ptm, &t ); |
| 25 | |
| 26 | return ptm; |
| 27 | } |
| 28 | |
| 29 | const char* GetTime() |
| 30 | { |