#include #include "qcontiguouscache.h" #include "gen_qcontiguouscache.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QContiguousCacheData* QContiguousCacheData_AllocateData(int size, int alignment) { return QContiguousCacheData::allocateData(static_cast(size), static_cast(alignment)); } void QContiguousCacheData_FreeData(QContiguousCacheData* data) { QContiguousCacheData::freeData(data); } void QContiguousCacheData_Delete(QContiguousCacheData* self) { delete self; }