Advance KDE Plasma and Qt integration
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#ifndef DATACHUNK_H
|
||||
#define DATACHUNK_H
|
||||
|
||||
#include "../qrencode.h"
|
||||
|
||||
typedef struct _DataChunk {
|
||||
QRencodeMode mode;
|
||||
int size;
|
||||
int bits;
|
||||
unsigned char *data;
|
||||
struct _DataChunk *next;
|
||||
} DataChunk;
|
||||
|
||||
DataChunk *DataChunk_new(QRencodeMode mode);
|
||||
void DataChunk_free(DataChunk *chunk);
|
||||
void DataChunk_freeList(DataChunk *list);
|
||||
void DataChunk_dumpChunkList(DataChunk *list);
|
||||
int DataChunk_totalSize(DataChunk *list);
|
||||
unsigned char *DataChunk_concatChunkList(DataChunk *list, int *retsize);
|
||||
|
||||
#endif /* DATACHUNK_H */
|
||||
Reference in New Issue
Block a user