eDosStation/EpdBase/TimeFunctions.h

14 lines
235 B
C
Raw Normal View History

2019-02-01 09:54:48 +01:00
#pragma once
#include <windows.h>
#include <time.h>
static class TimeFunctions
{
public:
TimeFunctions();
static void UnixTimeToFileTime(time_t t, LPFILETIME pft);
static void UnixTimeToSystemTime(time_t t, LPSYSTEMTIME pst);
};