mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
35 lines
827 B
C++
35 lines
827 B
C++
#ifndef GEN_QICONENGINE_H
|
|
#define GEN_QICONENGINE_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QDataStream;
|
|
class QIconEngine;
|
|
#else
|
|
typedef struct QDataStream QDataStream;
|
|
typedef struct QIconEngine QIconEngine;
|
|
#endif
|
|
|
|
void QIconEngine_Key(QIconEngine* self, char** _out, int* _out_Strlen);
|
|
QIconEngine* QIconEngine_Clone(QIconEngine* self);
|
|
bool QIconEngine_Read(QIconEngine* self, QDataStream* in);
|
|
bool QIconEngine_Write(QIconEngine* self, QDataStream* out);
|
|
void QIconEngine_IconName(QIconEngine* self, char** _out, int* _out_Strlen);
|
|
bool QIconEngine_IsNull(QIconEngine* self);
|
|
void QIconEngine_Delete(QIconEngine* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|