miqt/qt6/network/gen_qsslcipher.h

47 lines
1.5 KiB
C
Raw Permalink Normal View History

#pragma once
#ifndef MIQT_QT6_NETWORK_GEN_QSSLCIPHER_H
#define MIQT_QT6_NETWORK_GEN_QSSLCIPHER_H
2024-11-04 09:53:04 +00:00
#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 QSslCipher;
#else
typedef struct QSslCipher QSslCipher;
#endif
2024-12-07 04:15:57 +00:00
QSslCipher* QSslCipher_new();
QSslCipher* QSslCipher_new2(struct miqt_string name);
QSslCipher* QSslCipher_new3(struct miqt_string name, int protocol);
QSslCipher* QSslCipher_new4(QSslCipher* other);
2024-11-04 09:53:04 +00:00
void QSslCipher_OperatorAssign(QSslCipher* self, QSslCipher* other);
void QSslCipher_Swap(QSslCipher* self, QSslCipher* other);
bool QSslCipher_OperatorEqual(const QSslCipher* self, QSslCipher* other);
bool QSslCipher_OperatorNotEqual(const QSslCipher* self, QSslCipher* other);
bool QSslCipher_IsNull(const QSslCipher* self);
struct miqt_string QSslCipher_Name(const QSslCipher* self);
int QSslCipher_SupportedBits(const QSslCipher* self);
int QSslCipher_UsedBits(const QSslCipher* self);
struct miqt_string QSslCipher_KeyExchangeMethod(const QSslCipher* self);
struct miqt_string QSslCipher_AuthenticationMethod(const QSslCipher* self);
struct miqt_string QSslCipher_EncryptionMethod(const QSslCipher* self);
struct miqt_string QSslCipher_ProtocolString(const QSslCipher* self);
int QSslCipher_Protocol(const QSslCipher* self);
2024-11-19 06:29:06 +00:00
void QSslCipher_Delete(QSslCipher* self, bool isSubclass);
2024-11-04 09:53:04 +00:00
#ifdef __cplusplus
} /* extern C */
#endif
#endif