2024-11-27 05:16:48 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_WEBENGINE_GEN_QWEBENGINECERTIFICATEERROR_H
|
|
|
|
#define MIQT_QT6_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 04:15:57 +00:00
|
|
|
QWebEngineCertificateError* QWebEngineCertificateError_new(QWebEngineCertificateError* other);
|
2024-11-27 05:16:48 +00:00
|
|
|
void QWebEngineCertificateError_OperatorAssign(QWebEngineCertificateError* self, QWebEngineCertificateError* other);
|
|
|
|
int QWebEngineCertificateError_Type(const QWebEngineCertificateError* self);
|
|
|
|
QUrl* QWebEngineCertificateError_Url(const QWebEngineCertificateError* self);
|
|
|
|
bool QWebEngineCertificateError_IsOverridable(const QWebEngineCertificateError* self);
|
|
|
|
struct miqt_string QWebEngineCertificateError_Description(const QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_Defer(QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_RejectCertificate(QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_AcceptCertificate(QWebEngineCertificateError* self);
|
|
|
|
struct miqt_array /* of QSslCertificate* */ QWebEngineCertificateError_CertificateChain(const QWebEngineCertificateError* self);
|
|
|
|
void QWebEngineCertificateError_Delete(QWebEngineCertificateError* self, bool isSubclass);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|