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-09-15 10:29:05 +12:00
|
|
|
#include "_cgo_export.h"
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QContiguousCacheData_Delete(QContiguousCacheData* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|