513d613387
I would've preferred to just go with 4-spaces for indent and no tabs, but lao is a bit conservative about it. :^) Still, this is a ton better than mixing different styles all over the place, especially within the same file.
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "taisei.h"
|
|
|
|
#include <zip.h>
|
|
#include "private.h"
|
|
#include "hashtable.h"
|
|
|
|
/* zipfile */
|
|
|
|
typedef struct VFSZipFileTLS {
|
|
zip_t *zip;
|
|
SDL_RWops *stream;
|
|
zip_error_t error;
|
|
} VFSZipFileTLS;
|
|
|
|
typedef struct VFSZipFileData {
|
|
VFSNode *source;
|
|
Hashtable *pathmap;
|
|
SDL_TLSID tls_id;
|
|
} VFSZipFileData;
|
|
|
|
typedef struct VFSZipFileIterData {
|
|
zip_int64_t idx;
|
|
zip_int64_t num;
|
|
const char *prefix;
|
|
size_t prefix_len;
|
|
char *allocated;
|
|
} VFSZipFileIterData;
|
|
|
|
const char* vfs_zipfile_iter_shared(VFSNode *node, VFSZipFileData *zdata, VFSZipFileIterData *idata, VFSZipFileTLS *tls);
|
|
void vfs_zipfile_iter_stop(VFSNode *node, void **opaque);
|
|
|
|
/* zippath */
|
|
|
|
typedef struct VFSZipPathData {
|
|
VFSNode *zipnode;
|
|
VFSZipFileTLS *tls;
|
|
uint64_t index;
|
|
VFSInfo info;
|
|
} VFSZipPathData;
|
|
|
|
void vfs_zippath_init(VFSNode *node, VFSNode *zipnode, VFSZipFileTLS *tls, zip_int64_t idx);
|