mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
18 lines
369 B
C++
18 lines
369 B
C++
#include <QThreadStorageData>
|
|
#include "qthreadstorage.h"
|
|
|
|
#include "gen_qthreadstorage.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QThreadStorageData* QThreadStorageData_new(QThreadStorageData* param1) {
|
|
return new QThreadStorageData(*param1);
|
|
}
|
|
|
|
void QThreadStorageData_Delete(QThreadStorageData* self) {
|
|
delete self;
|
|
}
|
|
|