miqt/qt/gen_qexception.h

46 lines
1.4 KiB
C
Raw Normal View History

#pragma once
#ifndef MIQT_QT_GEN_QEXCEPTION_H
#define MIQT_QT_GEN_QEXCEPTION_H
2024-08-29 07:01:51 +00:00
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include "../libmiqt/libmiqt.h"
2024-08-29 07:01:51 +00:00
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
#if defined(WORKAROUND_INNER_CLASS_DEFINITION_QtPrivate__ExceptionHolder)
typedef QtPrivate::ExceptionHolder QtPrivate__ExceptionHolder;
#else
class QtPrivate__ExceptionHolder;
#endif
#if defined(WORKAROUND_INNER_CLASS_DEFINITION_QtPrivate__ExceptionStore)
typedef QtPrivate::ExceptionStore QtPrivate__ExceptionStore;
#else
class QtPrivate__ExceptionStore;
#endif
#else
typedef struct QtPrivate__ExceptionHolder QtPrivate__ExceptionHolder;
typedef struct QtPrivate__ExceptionStore QtPrivate__ExceptionStore;
#endif
2024-11-19 06:29:06 +00:00
void QtPrivate__ExceptionHolder_new(QtPrivate__ExceptionHolder** outptr_QtPrivate__ExceptionHolder);
void QtPrivate__ExceptionHolder_Delete(QtPrivate__ExceptionHolder* self, bool isSubclass);
2024-08-29 07:01:51 +00:00
bool QtPrivate__ExceptionStore_HasException(const QtPrivate__ExceptionStore* self);
2024-08-29 07:01:51 +00:00
void QtPrivate__ExceptionStore_ThrowPossibleException(QtPrivate__ExceptionStore* self);
bool QtPrivate__ExceptionStore_HasThrown(const QtPrivate__ExceptionStore* self);
2024-11-19 06:29:06 +00:00
void QtPrivate__ExceptionStore_Delete(QtPrivate__ExceptionStore* self, bool isSubclass);
2024-08-29 07:01:51 +00:00
#ifdef __cplusplus
} /* extern C */
#endif
#endif