1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-09-23 18:58:21 +02:00
segatools-dniel97/hooklib/dvd.h
6cb1008cabfc0d4485696f6df7431a5e27604e1b 031ccb154b dvd: move thread safety comment into header file
2021-06-17 04:13:50 +02:00

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);