2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_NETWORK_GEN_QSCTPSERVER_H
|
|
|
|
#define MIQT_QT6_NETWORK_GEN_QSCTPSERVER_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 QMetaObject;
|
|
|
|
class QObject;
|
|
|
|
class QSctpServer;
|
|
|
|
class QSctpSocket;
|
2024-11-19 06:29:06 +00:00
|
|
|
class QTcpServer;
|
|
|
|
class QTcpSocket;
|
2024-11-04 09:53:04 +00:00
|
|
|
#else
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QSctpServer QSctpServer;
|
|
|
|
typedef struct QSctpSocket QSctpSocket;
|
2024-11-19 06:29:06 +00:00
|
|
|
typedef struct QTcpServer QTcpServer;
|
|
|
|
typedef struct QTcpSocket QTcpSocket;
|
2024-11-04 09:53:04 +00:00
|
|
|
#endif
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QSctpServer* QSctpServer_new();
|
|
|
|
QSctpServer* QSctpServer_new2(QObject* parent);
|
|
|
|
void QSctpServer_virtbase(QSctpServer* src, QTcpServer** outptr_QTcpServer);
|
2024-11-04 09:53:04 +00:00
|
|
|
QMetaObject* QSctpServer_MetaObject(const QSctpServer* self);
|
|
|
|
void* QSctpServer_Metacast(QSctpServer* self, const char* param1);
|
|
|
|
struct miqt_string QSctpServer_Tr(const char* s);
|
|
|
|
void QSctpServer_SetMaximumChannelCount(QSctpServer* self, int count);
|
|
|
|
int QSctpServer_MaximumChannelCount(const QSctpServer* self);
|
|
|
|
QSctpSocket* QSctpServer_NextPendingDatagramConnection(QSctpServer* self);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QSctpServer_IncomingConnection(QSctpServer* self, intptr_t handle);
|
2024-11-04 09:53:04 +00:00
|
|
|
struct miqt_string QSctpServer_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QSctpServer_Tr3(const char* s, const char* c, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QSctpServer_override_virtual_IncomingConnection(void* self, intptr_t slot);
|
|
|
|
void QSctpServer_virtualbase_IncomingConnection(void* self, intptr_t handle);
|
|
|
|
void QSctpServer_override_virtual_HasPendingConnections(void* self, intptr_t slot);
|
|
|
|
bool QSctpServer_virtualbase_HasPendingConnections(const void* self);
|
|
|
|
void QSctpServer_override_virtual_NextPendingConnection(void* self, intptr_t slot);
|
|
|
|
QTcpSocket* QSctpServer_virtualbase_NextPendingConnection(void* self);
|
|
|
|
void QSctpServer_Delete(QSctpServer* self, bool isSubclass);
|
2024-11-04 09:53:04 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|