HollowsHunter
Scans all running processes. Recognizes and dumps a variety of potentially malicious implants (replaced/implanted PEs, shellcodes, hooks, in-memory patches).
Loading...
Searching...
No Matches
time_util.h
Go to the documentation of this file.
1#pragma once
2
3#include <windows.h>
4#include <time.h>
5#include <iostream>
6
7#define INVALID_TIME LONGLONG(-1)
8
9namespace util {
10 std::wstring strtime(const time_t t);
11
12 LONGLONG FileTime_to_POSIX(FILETIME ft);
13
14 LONGLONG process_start_time(DWORD processID);
15};
16
LONGLONG process_start_time(DWORD processID)
Definition time_util.cpp:42
LONGLONG FileTime_to_POSIX(FILETIME ft)
Definition time_util.cpp:25
std::wstring strtime(const time_t t)
Definition time_util.cpp:12