3169b16d10
VFSNode no longer has the generic void* data1 and data2 fields. Introduced a macro system that allows backends to easily "subclass" VFSNode to add extra fields.
16 lines
407 B
C
16 lines
407 B
C
/*
|
|
* This software is licensed under the terms of the MIT License.
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2019, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2019, Andrei Alexeyev <akari@taisei-project.org>.
|
|
*/
|
|
|
|
#include "taisei.h"
|
|
|
|
#include "zipfile.h"
|
|
|
|
VFSNode *vfs_zipfile_create(VFSNode *source) {
|
|
vfs_set_error("Compiled without ZIP support");
|
|
return NULL;
|
|
}
|