2024-11-26 22:31:32 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_WEBKIT_GEN_QWEBDATABASE_H
|
|
|
|
#define MIQT_QT_WEBKIT_GEN_QWEBDATABASE_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 QWebDatabase;
|
|
|
|
class QWebSecurityOrigin;
|
|
|
|
#else
|
|
|
|
typedef struct QWebDatabase QWebDatabase;
|
|
|
|
typedef struct QWebSecurityOrigin QWebSecurityOrigin;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QWebDatabase* QWebDatabase_new(QWebDatabase* other);
|
2025-02-01 13:45:16 +13:00
|
|
|
void QWebDatabase_operatorAssign(QWebDatabase* self, QWebDatabase* other);
|
|
|
|
struct miqt_string QWebDatabase_name(const QWebDatabase* self);
|
|
|
|
struct miqt_string QWebDatabase_displayName(const QWebDatabase* self);
|
|
|
|
long long QWebDatabase_expectedSize(const QWebDatabase* self);
|
|
|
|
long long QWebDatabase_size(const QWebDatabase* self);
|
|
|
|
struct miqt_string QWebDatabase_fileName(const QWebDatabase* self);
|
|
|
|
QWebSecurityOrigin* QWebDatabase_origin(const QWebDatabase* self);
|
|
|
|
void QWebDatabase_removeDatabase(QWebDatabase* param1);
|
|
|
|
void QWebDatabase_removeAllDatabases();
|
|
|
|
void QWebDatabase_delete(QWebDatabase* self);
|
2024-11-26 22:31:32 +13:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-11-26 22:31:32 +13:00
|
|
|
|
|
|
|
#endif
|