From 3beb907821ef4788e1daefa756185e7eec317230 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 1 Feb 2011 20:02:30 +0100 Subject: added vfs container support to gtk addfile/folder dialogs --- plugins/vfs_zip/vfs_zip.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'plugins/vfs_zip') diff --git a/plugins/vfs_zip/vfs_zip.c b/plugins/vfs_zip/vfs_zip.c index 1a8e9c48..b1ed2f37 100644 --- a/plugins/vfs_zip/vfs_zip.c +++ b/plugins/vfs_zip/vfs_zip.c @@ -41,7 +41,6 @@ typedef struct { } zip_file_t; static const char *scheme_names[] = { "zip://", NULL }; -static const char *exts[] = { "zip", NULL }; const char ** vfs_zip_get_schemes (void) { @@ -53,12 +52,6 @@ vfs_zip_is_streaming (void) { return 0; } -const char ** -vfs_zip_get_container_extensions (void) { - return exts; -} - - // fname must have form of zip://full_filepath.zip:full_filepath_in_zip DB_FILE* vfs_zip_open (const char *fname) { @@ -236,7 +229,6 @@ static DB_vfs_t plugin = { .getlength = vfs_zip_getlength, .get_schemes = vfs_zip_get_schemes, .is_streaming = vfs_zip_is_streaming, - .get_container_extensions = vfs_zip_get_container_extensions, .is_container = vfs_zip_is_container, .scandir = vfs_zip_scandir, }; -- cgit v1.2.3