15 lines
216 B
C
15 lines
216 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);
|