mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT6_GEN_QMUTEX_H
|
|
#define MIQT_QT6_GEN_QMUTEX_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QBasicMutex;
|
|
class QMutex;
|
|
class QRecursiveMutex;
|
|
#else
|
|
typedef struct QBasicMutex QBasicMutex;
|
|
typedef struct QMutex QMutex;
|
|
typedef struct QRecursiveMutex QRecursiveMutex;
|
|
#endif
|
|
|
|
QBasicMutex* QBasicMutex_new();
|
|
void QBasicMutex_Lock(QBasicMutex* self);
|
|
void QBasicMutex_Unlock(QBasicMutex* self);
|
|
bool QBasicMutex_TryLock(QBasicMutex* self);
|
|
bool QBasicMutex_TryLock2(QBasicMutex* self);
|
|
void QBasicMutex_Delete(QBasicMutex* self, bool isSubclass);
|
|
|
|
QMutex* QMutex_new();
|
|
void QMutex_virtbase(QMutex* src, QBasicMutex** outptr_QBasicMutex);
|
|
bool QMutex_TryLock(QMutex* self);
|
|
bool QMutex_TryLockWithTimeout(QMutex* self, int timeout);
|
|
void QMutex_Delete(QMutex* self, bool isSubclass);
|
|
|
|
QRecursiveMutex* QRecursiveMutex_new();
|
|
void QRecursiveMutex_Lock(QRecursiveMutex* self);
|
|
bool QRecursiveMutex_TryLock(QRecursiveMutex* self);
|
|
void QRecursiveMutex_Unlock(QRecursiveMutex* self);
|
|
bool QRecursiveMutex_TryLock2(QRecursiveMutex* self);
|
|
bool QRecursiveMutex_TryLock1(QRecursiveMutex* self, int timeout);
|
|
void QRecursiveMutex_Delete(QRecursiveMutex* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|