1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-11 23:17:08 +01:00
segatools-dniel97/hooklib/dvd.h
6cb1008cabfc0d4485696f6df7431a5e27604e1b 56a32fd80a Add dvd hook to allow hiding connected dvd drives
2021-06-17 04:02:55 +02:00

12 lines
165 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct dvd_config {
bool enable;
};
void dvd_hook_init(const struct dvd_config *cfg, HINSTANCE self);