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-09-14 22:29:05 +00:00
|
|
|
#include "binding.h"
|
|
|
|
|
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-09-14 22:29:05 +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-09-18 00:12:02 +00:00
|
|
|
struct miqt_string* QLibraryInfo_Location(int param1);
|
2024-09-14 22:29:05 +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
|