2019-10-14 23:18:18 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-05 19:31:11 -05:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct clock_config {
|
|
|
|
bool timezone;
|
|
|
|
bool timewarp;
|
|
|
|
bool writeable;
|
|
|
|
};
|
2019-10-14 23:18:18 -04:00
|
|
|
|
|
|
|
HRESULT clock_hook_init(const struct clock_config *cfg);
|