1
0
mirror of synced 2025-02-21 12:51:08 +01:00

16 lines
262 B
C
Raw Normal View History

2023-01-02 23:35:53 -05:00
#pragma once
#include <windows.h>
#include <stdbool.h>
struct clock_config {
bool enable;
2023-01-02 23:35:53 -05:00
bool timezone;
bool timewarp;
bool writeable;
};
HRESULT clock_hook_init(const struct clock_config *cfg);
void clock_hook_insert_hooks(HMODULE target);