2024-11-27 18:16:48 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_WEBENGINE_GEN_QWEBENGINECERTIFICATEERROR_H
|
|
|
|
#define MIQT_QT_WEBENGINE_GEN_QWEBENGINECERTIFICATEERROR_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 QSslCertificate;
|
|
|
|
class QUrl;
|
|
|
|
class QWebEngineCertificateError;
|
|
|
|
#else
|
|
|
|
typedef struct QSslCertificate QSslCertificate;
|
|
|
|
typedef struct QUrl QUrl;
|
|
|
|
typedef struct QWebEngineCertificateError QWebEngineCertificateError;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QWebEngineCertificateError* QWebEngineCertificateError_new(int error, QUrl* url, bool overridable, struct miqt_string errorDescription);
|
|
|
|
QWebEngineCertificateError* QWebEngineCertificateError_new2(QWebEngineCertificateError* other);
|
2025-02-01 13:45:16 +13:00
|
|
|
int QWebEngineCertificateError_error(const QWebEngineCertificateError* self);
|
|
|
|
QUrl* QWebEngineCertificateError_url(const QWebEngineCertificateError* self);
|
|
|
|
bool QWebEngineCertificateError_isOverridable(const QWebEngineCertificateError* self);
|
|
|
|
struct miqt_string QWebEngineCertificateError_errorDescription(const QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_operatorAssign(QWebEngineCertificateError* self, QWebEngineCertificateError* other);
|
|
|
|
void QWebEngineCertificateError_defer(QWebEngineCertificateError* self);
|
|
|
|
bool QWebEngineCertificateError_deferred(const QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_rejectCertificate(QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_ignoreCertificateError(QWebEngineCertificateError* self);
|
|
|
|
bool QWebEngineCertificateError_answered(const QWebEngineCertificateError* self);
|
|
|
|
struct miqt_array /* of QSslCertificate* */ QWebEngineCertificateError_certificateChain(const QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_delete(QWebEngineCertificateError* self);
|
2024-11-27 18:16:48 +13:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-11-27 18:16:48 +13:00
|
|
|
|
|
|
|
#endif
|