2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QLIBRARYINFO_H
|
|
|
|
#define GEN_QLIBRARYINFO_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QDate;
|
|
|
|
class QLibraryInfo;
|
|
|
|
class QVersionNumber;
|
|
|
|
#else
|
|
|
|
typedef struct QDate QDate;
|
|
|
|
typedef struct QLibraryInfo QLibraryInfo;
|
|
|
|
typedef struct QVersionNumber QVersionNumber;
|
|
|
|
#endif
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QLibraryInfo_Licensee();
|
|
|
|
struct miqt_string QLibraryInfo_LicensedProducts();
|
2024-08-25 04:08:24 +00:00
|
|
|
QDate* QLibraryInfo_BuildDate();
|
2024-08-29 07:01:51 +00:00
|
|
|
const char* QLibraryInfo_Build();
|
2024-08-25 04:08:24 +00:00
|
|
|
bool QLibraryInfo_IsDebugBuild();
|
|
|
|
QVersionNumber* QLibraryInfo_Version();
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QLibraryInfo_Location(int param1);
|
2024-11-04 07:18:27 +00:00
|
|
|
struct miqt_array QLibraryInfo_PlatformPluginArguments(struct miqt_string platformName);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QLibraryInfo_Delete(QLibraryInfo* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|