1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-09 23:41:35 +01:00

15 lines
245 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);
void clock_hook_insert_hooks(HMODULE target);