1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 07:41:46 +01:00

14 lines
199 B
C
Raw Normal View History

2019-10-14 23:18:18 -04:00
#pragma once
#include <windows.h>
2019-11-05 19:31:11 -05:00
#include <stdbool.h>
struct clock_config {
bool timezone;
bool timewarp;
bool writeable;
};
2019-10-14 23:18:18 -04:00
HRESULT clock_hook_init(const struct clock_config *cfg);