segatools/platform/clock.h

14 lines
199 B
C
Raw Normal View History

2019-10-15 03:18:18 +00:00
#pragma once
#include <windows.h>
2019-11-06 00:31:11 +00:00
#include <stdbool.h>
struct clock_config {
bool timezone;
bool timewarp;
bool writeable;
};
2019-10-15 03:18:18 +00:00
HRESULT clock_hook_init(const struct clock_config *cfg);