miqt/qt/gen_qfiledevice.h

59 lines
2.1 KiB
C
Raw Normal View History

#ifndef GEN_QFILEDEVICE_H
#define GEN_QFILEDEVICE_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include "binding.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
2024-08-29 07:01:51 +00:00
class QDateTime;
class QFileDevice;
class QMetaObject;
#else
2024-08-29 07:01:51 +00:00
typedef struct QDateTime QDateTime;
typedef struct QFileDevice QFileDevice;
typedef struct QMetaObject QMetaObject;
#endif
QMetaObject* QFileDevice_MetaObject(const QFileDevice* self);
struct miqt_string* QFileDevice_Tr(const char* s);
struct miqt_string* QFileDevice_TrUtf8(const char* s);
uintptr_t QFileDevice_Error(const QFileDevice* self);
void QFileDevice_UnsetError(QFileDevice* self);
void QFileDevice_Close(QFileDevice* self);
bool QFileDevice_IsSequential(const QFileDevice* self);
int QFileDevice_Handle(const QFileDevice* self);
struct miqt_string* QFileDevice_FileName(const QFileDevice* self);
long long QFileDevice_Pos(const QFileDevice* self);
2024-08-29 07:01:51 +00:00
bool QFileDevice_Seek(QFileDevice* self, long long offset);
bool QFileDevice_AtEnd(const QFileDevice* self);
bool QFileDevice_Flush(QFileDevice* self);
long long QFileDevice_Size(const QFileDevice* self);
2024-08-29 07:01:51 +00:00
bool QFileDevice_Resize(QFileDevice* self, long long sz);
int QFileDevice_Permissions(const QFileDevice* self);
2024-08-29 07:01:51 +00:00
bool QFileDevice_SetPermissions(QFileDevice* self, int permissionSpec);
unsigned char* QFileDevice_Map(QFileDevice* self, long long offset, long long size);
bool QFileDevice_Unmap(QFileDevice* self, unsigned char* address);
QDateTime* QFileDevice_FileTime(const QFileDevice* self, uintptr_t time);
2024-08-29 07:01:51 +00:00
bool QFileDevice_SetFileTime(QFileDevice* self, QDateTime* newDate, uintptr_t fileTime);
struct miqt_string* QFileDevice_Tr2(const char* s, const char* c);
struct miqt_string* QFileDevice_Tr3(const char* s, const char* c, int n);
struct miqt_string* QFileDevice_TrUtf82(const char* s, const char* c);
struct miqt_string* QFileDevice_TrUtf83(const char* s, const char* c, int n);
2024-08-29 07:01:51 +00:00
unsigned char* QFileDevice_Map3(QFileDevice* self, long long offset, long long size, uintptr_t flags);
void QFileDevice_Delete(QFileDevice* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif