2024-08-25 16:08:24 +12:00
|
|
|
#include <QContiguousCacheData>
|
2024-10-16 18:07:56 +13:00
|
|
|
#include <qcontiguouscache.h>
|
2024-08-29 19:01:51 +12:00
|
|
|
#include "gen_qcontiguouscache.h"
|
2024-12-11 19:55:47 +13:00
|
|
|
|
2025-01-07 11:30:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2024-12-11 19:55:47 +13:00
|
|
|
#endif
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
QContiguousCacheData* QContiguousCacheData_AllocateData(int size, int alignment) {
|
|
|
|
return QContiguousCacheData::allocateData(static_cast<int>(size), static_cast<int>(alignment));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QContiguousCacheData_FreeData(QContiguousCacheData* data) {
|
|
|
|
QContiguousCacheData::freeData(data);
|
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
void QContiguousCacheData_Delete(QContiguousCacheData* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QContiguousCacheData*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-08-25 16:08:24 +12:00
|
|
|
}
|
|
|
|
|