diff --git a/ffi/idevice.hpp b/ffi/idevice.hpp new file mode 100644 index 0000000..6aac99c --- /dev/null +++ b/ffi/idevice.hpp @@ -0,0 +1,16 @@ +// Jackson Coxson - Bindings to idevice - https://github.com/jkcoxson/idevice +// This file only wraps the C bindings for C++, the C bindings still must be +// generated. +// ``cargo build --release`` + +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +#include "idevice.h" // this file is generated by bindgen + +#ifdef __cplusplus +} +#endif