mirror of
https://github.com/mappu/miqt.git
synced 2025-01-22 14:40:38 +00:00
a0c6344ecd
The expected type of the callback is already known from the AST - this change reduces dependency on cgo specifics and makes the generated C ABI entirely cgo-independent - in particular, there is no need to include `_cgo_export.h` any more.
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
#include <QHttp2Configuration>
|
|
#include <qhttp2configuration.h>
|
|
#include "gen_qhttp2configuration.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QHttp2Configuration* QHttp2Configuration_new() {
|
|
return new QHttp2Configuration();
|
|
}
|
|
|
|
QHttp2Configuration* QHttp2Configuration_new2(QHttp2Configuration* other) {
|
|
return new QHttp2Configuration(*other);
|
|
}
|
|
|
|
void QHttp2Configuration_OperatorAssign(QHttp2Configuration* self, QHttp2Configuration* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QHttp2Configuration_SetServerPushEnabled(QHttp2Configuration* self, bool enable) {
|
|
self->setServerPushEnabled(enable);
|
|
}
|
|
|
|
bool QHttp2Configuration_ServerPushEnabled(const QHttp2Configuration* self) {
|
|
return self->serverPushEnabled();
|
|
}
|
|
|
|
void QHttp2Configuration_SetHuffmanCompressionEnabled(QHttp2Configuration* self, bool enable) {
|
|
self->setHuffmanCompressionEnabled(enable);
|
|
}
|
|
|
|
bool QHttp2Configuration_HuffmanCompressionEnabled(const QHttp2Configuration* self) {
|
|
return self->huffmanCompressionEnabled();
|
|
}
|
|
|
|
bool QHttp2Configuration_SetSessionReceiveWindowSize(QHttp2Configuration* self, unsigned int size) {
|
|
return self->setSessionReceiveWindowSize(static_cast<unsigned int>(size));
|
|
}
|
|
|
|
unsigned int QHttp2Configuration_SessionReceiveWindowSize(const QHttp2Configuration* self) {
|
|
return self->sessionReceiveWindowSize();
|
|
}
|
|
|
|
bool QHttp2Configuration_SetStreamReceiveWindowSize(QHttp2Configuration* self, unsigned int size) {
|
|
return self->setStreamReceiveWindowSize(static_cast<unsigned int>(size));
|
|
}
|
|
|
|
unsigned int QHttp2Configuration_StreamReceiveWindowSize(const QHttp2Configuration* self) {
|
|
return self->streamReceiveWindowSize();
|
|
}
|
|
|
|
bool QHttp2Configuration_SetMaxFrameSize(QHttp2Configuration* self, unsigned int size) {
|
|
return self->setMaxFrameSize(static_cast<unsigned int>(size));
|
|
}
|
|
|
|
unsigned int QHttp2Configuration_MaxFrameSize(const QHttp2Configuration* self) {
|
|
return self->maxFrameSize();
|
|
}
|
|
|
|
void QHttp2Configuration_Swap(QHttp2Configuration* self, QHttp2Configuration* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
void QHttp2Configuration_Delete(QHttp2Configuration* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QHttp2Configuration*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|