From 7b1faa06a5650dbaeae3c55c4f5d0cc41bce383b Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 16 Mar 2024 15:17:57 +0100 Subject: Add libimobiledevice_version() function to interface --- src/idevice.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src') diff --git a/src/idevice.c b/src/idevice.c index ed1cf3c..b9bbb1f 100644 --- a/src/idevice.c +++ b/src/idevice.c @@ -219,6 +219,14 @@ BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved) #warning No compiler support for constructor/destructor attributes, some features might not be available. #endif +const char* libimobiledevice_version() +{ +#ifndef PACKAGE_VERSION +#error PACKAGE_VERSION is not defined! +#endif + return PACKAGE_VERSION; +} + struct idevice_subscription_context { idevice_event_cb_t callback; void *user_data; -- cgit v1.1-32-gdbae