bemanitools/src/main/p3ioemu/devmgr.h
2019-09-27 22:36:50 +02:00

15 lines
297 B
C

#ifndef P3IO_DEVMGR_H
#define P3IO_DEVMGR_H
/* Not called setupapi.h so that we don't collide with the real setupapi.h */
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
void p3io_setupapi_insert_hooks(HMODULE target);
bool p3io_setupapi_match_path(const wchar_t *path);
#endif