miqt/qt/multimedia/gen_qmediacontent.h

56 lines
2.0 KiB
C
Raw Normal View History

2024-11-04 10:15:32 +00:00
#ifndef GEN_QMEDIACONTENT_H
#define GEN_QMEDIACONTENT_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 QMediaContent;
class QMediaPlaylist;
class QMediaResource;
class QNetworkRequest;
class QUrl;
#else
typedef struct QMediaContent QMediaContent;
typedef struct QMediaPlaylist QMediaPlaylist;
typedef struct QMediaResource QMediaResource;
typedef struct QNetworkRequest QNetworkRequest;
typedef struct QUrl QUrl;
#endif
QMediaContent* QMediaContent_new();
QMediaContent* QMediaContent_new2(QUrl* contentUrl);
QMediaContent* QMediaContent_new3(QNetworkRequest* contentRequest);
QMediaContent* QMediaContent_new4(QMediaResource* contentResource);
QMediaContent* QMediaContent_new5(struct miqt_array /* of QMediaResource* */ resources);
QMediaContent* QMediaContent_new6(QMediaContent* other);
QMediaContent* QMediaContent_new7(QMediaPlaylist* playlist);
QMediaContent* QMediaContent_new8(QMediaPlaylist* playlist, QUrl* contentUrl);
QMediaContent* QMediaContent_new9(QMediaPlaylist* playlist, QUrl* contentUrl, bool takeOwnership);
void QMediaContent_OperatorAssign(QMediaContent* self, QMediaContent* other);
bool QMediaContent_OperatorEqual(const QMediaContent* self, QMediaContent* other);
bool QMediaContent_OperatorNotEqual(const QMediaContent* self, QMediaContent* other);
bool QMediaContent_IsNull(const QMediaContent* self);
QNetworkRequest* QMediaContent_Request(const QMediaContent* self);
QUrl* QMediaContent_CanonicalUrl(const QMediaContent* self);
QNetworkRequest* QMediaContent_CanonicalRequest(const QMediaContent* self);
QMediaResource* QMediaContent_CanonicalResource(const QMediaContent* self);
struct miqt_array QMediaContent_Resources(const QMediaContent* self);
QMediaPlaylist* QMediaContent_Playlist(const QMediaContent* self);
void QMediaContent_Delete(QMediaContent* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif