1
0
mirror of synced 2024-11-24 05:50:12 +01:00
bananatools/hooklib/dvd.h

15 lines
283 B
C
Raw Normal View History

2023-01-03 05:35:53 +01:00
#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);