Compress/decompress and Encode/Decode DataBase64.

This commit is contained in:
jussi
2023-11-03 23:12:55 +02:00
parent e61823b8bb
commit d74a505d40
16 changed files with 676 additions and 172 deletions

View File

@@ -18,14 +18,17 @@ enum BufferType {
BUFFER_UNSIGNED_CHAR,
BUFFER_UNSIGNED_SHORT,
BUFFER_UNSIGNED_INT,
BUFFER_CHAR,
BUFFER_SHORT,
BUFFER_INT,
BUFFER_FLOAT,
BUFFER_DOUBLE
};
typedef struct {
int type;
size_t size;
void *data;
int x;
int y;
} Buffer;
bool luaInit( int argn, const char **argc );