Files
djhackersdev_bemanitools/src/main/hooklib/setupapi.h
T
icex2 b6e588116d Various import fixes caused by clang-format
Added format protection block to avoid re-ordering of header files
according to formatting rules.
2019-10-22 21:04:45 +02:00

19 lines
374 B
C

#ifndef HOOKLIB_SETUPAPI_H
#define HOOKLIB_SETUPAPI_H
// clang-format off
// Don't format because the order is important here
#include <windows.h>
#include <setupapi.h>
// clang-format on
struct hook_setupapi_data {
GUID device_guid;
const char *device_desc;
const char *device_path;
};
void hook_setupapi_init(const struct hook_setupapi_data *data);
#endif