2024-08-25 04:08:24 +00:00
|
|
|
#include <QContiguousCacheData>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "qcontiguouscache.h"
|
|
|
|
#include "gen_qcontiguouscache.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 04:08:24 +00: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;
|
|
|
|
}
|
|
|
|
|