2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_GEN_QSYSTEMSEMAPHORE_H
|
|
|
|
#define MIQT_QT6_GEN_QSYSTEMSEMAPHORE_H
|
2024-10-20 05:21:03 +00:00
|
|
|
|
|
|
|
#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 QSystemSemaphore;
|
|
|
|
#else
|
|
|
|
typedef struct QSystemSemaphore QSystemSemaphore;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QSystemSemaphore* QSystemSemaphore_new(struct miqt_string key);
|
|
|
|
QSystemSemaphore* QSystemSemaphore_new2(struct miqt_string key, int initialValue);
|
|
|
|
QSystemSemaphore* QSystemSemaphore_new3(struct miqt_string key, int initialValue, int mode);
|
2024-10-20 05:21:03 +00:00
|
|
|
struct miqt_string QSystemSemaphore_Tr(const char* sourceText);
|
|
|
|
void QSystemSemaphore_SetKey(QSystemSemaphore* self, struct miqt_string key);
|
|
|
|
struct miqt_string QSystemSemaphore_Key(const QSystemSemaphore* self);
|
|
|
|
bool QSystemSemaphore_Acquire(QSystemSemaphore* self);
|
|
|
|
bool QSystemSemaphore_Release(QSystemSemaphore* self);
|
|
|
|
int QSystemSemaphore_Error(const QSystemSemaphore* self);
|
|
|
|
struct miqt_string QSystemSemaphore_ErrorString(const QSystemSemaphore* self);
|
|
|
|
struct miqt_string QSystemSemaphore_Tr2(const char* sourceText, const char* disambiguation);
|
|
|
|
struct miqt_string QSystemSemaphore_Tr3(const char* sourceText, const char* disambiguation, int n);
|
|
|
|
void QSystemSemaphore_SetKey2(QSystemSemaphore* self, struct miqt_string key, int initialValue);
|
|
|
|
void QSystemSemaphore_SetKey3(QSystemSemaphore* self, struct miqt_string key, int initialValue, int mode);
|
|
|
|
bool QSystemSemaphore_Release1(QSystemSemaphore* self, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QSystemSemaphore_Delete(QSystemSemaphore* self, bool isSubclass);
|
2024-10-20 05:21:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|