mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-12 04:40:46 +01:00
15 lines
283 B
C
15 lines
283 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct dvd_config {
|
|
bool enable;
|
|
};
|
|
|
|
/* Init is not thread safe because API hook init is not thread safe blah
|
|
blah blah you know the drill by now. */
|
|
|
|
void dvd_hook_init(const struct dvd_config *cfg, HINSTANCE self);
|