mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
|
#ifndef GEN_QSSLERROR_H
|
||
|
#define GEN_QSSLERROR_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 QSslError;
|
||
|
#else
|
||
|
typedef struct QSslCertificate QSslCertificate;
|
||
|
typedef struct QSslError QSslError;
|
||
|
#endif
|
||
|
|
||
|
QSslError* QSslError_new();
|
||
|
QSslError* QSslError_new2(int error);
|
||
|
QSslError* QSslError_new3(int error, QSslCertificate* certificate);
|
||
|
QSslError* QSslError_new4(QSslError* other);
|
||
|
void QSslError_Swap(QSslError* self, QSslError* other);
|
||
|
void QSslError_OperatorAssign(QSslError* self, QSslError* other);
|
||
|
bool QSslError_OperatorEqual(const QSslError* self, QSslError* other);
|
||
|
bool QSslError_OperatorNotEqual(const QSslError* self, QSslError* other);
|
||
|
int QSslError_Error(const QSslError* self);
|
||
|
struct miqt_string QSslError_ErrorString(const QSslError* self);
|
||
|
QSslCertificate* QSslError_Certificate(const QSslError* self);
|
||
|
void QSslError_Delete(QSslError* self);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern C */
|
||
|
#endif
|
||
|
|
||
|
#endif
|