Add dvd hook to allow hiding connected dvd drives

This commit is contained in:
2021-06-16 12:08:08 +02:00
parent 457ed9cd2b
commit f79144edc1
11 changed files with 124 additions and 1 deletions

11
hooklib/dvd.h Normal file
View File

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