2024-12-29 18:05:13 +13:00
|
|
|
#pragma once
|
|
|
|
|
2025-01-11 15:50:00 +13:00
|
|
|
#ifndef MIQT_QT6_MAINTHREAD_H
|
|
|
|
#define MIQT_QT6_MAINTHREAD_H
|
2024-12-29 18:05:13 +13:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void mainthread_exec(intptr_t cb);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|