imager_function_ext_table = INT2PTR(im_ext_funcs *, SvIV(get_sv(PERL_FUNCTION_TABLE_NAME, 1))); \
if (!imager_function_ext_table) \
croak("Imager API function table not found!"); \
- if (imager_function_ext_table->version != IMAGER_API_VERSION) \
- croak("Imager API version incorrect"); \
+ if (imager_function_ext_table->version != IMAGER_API_VERSION) { \
+ croak("Imager API version incorrect loaded %d vs expected %d", \
+ imager_function_ext_table->version, IMAGER_API_VERSION); \
+ } \
if (imager_function_ext_table->level < IMAGER_MIN_API_LEVEL) \
croak("API level %d below minimum of %d", imager_function_ext_table->level, IMAGER_MIN_API_LEVEL); \
} while (0)