1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-14 13:37:38 +01:00
segatools-hay1tsme/platform/clock.h

15 lines
245 B
C
Raw Normal View History

2019-10-15 05:18:18 +02:00
#pragma once
#include <windows.h>
2019-11-06 01:31:11 +01:00
#include <stdbool.h>
struct clock_config {
bool timezone;
bool timewarp;
bool writeable;
};
2019-10-15 05:18:18 +02:00
HRESULT clock_hook_init(const struct clock_config *cfg);
2024-08-20 16:14:10 +02:00
void clock_hook_insert_hooks(HMODULE target);