mirror of
https://github.com/mappu/miqt.git
synced 2025-01-08 00:28:36 +00:00
19 lines
197 B
C
19 lines
197 B
C
#pragma once
|
|
|
|
#ifndef QT_MAINTHREAD_H
|
|
#define QT_MAINTHREAD_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mainthread_exec(intptr_t cb);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|