1
0
mirror of synced 2024-11-27 23:10:49 +01:00
bananatools/platform/clock.h

16 lines
262 B
C

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