segatools/platform/clock.h
2024-08-20 10:14:10 -04:00

15 lines
245 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct clock_config {
bool timezone;
bool timewarp;
bool writeable;
};
HRESULT clock_hook_init(const struct clock_config *cfg);
void clock_hook_insert_hooks(HMODULE target);