2021-06-16 10:08:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct dvd_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
|
|
|
|
2021-06-17 02:13:50 +00:00
|
|
|
/* Init is not thread safe because API hook init is not thread safe blah
|
|
|
|
blah blah you know the drill by now. */
|
|
|
|
|
2021-06-16 10:08:08 +00:00
|
|
|
void dvd_hook_init(const struct dvd_config *cfg, HINSTANCE self);
|