16 lines
262 B
C
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);
|