summaryrefslogtreecommitdiff
path: root/plugins/vfs_zip
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-02-01 20:02:30 +0100
committerGravatar waker <wakeroid@gmail.com>2011-02-01 20:02:30 +0100
commit3beb907821ef4788e1daefa756185e7eec317230 (patch)
tree9804c29a962959249cf70a2e70d4932ad1a898df /plugins/vfs_zip
parent2269a5ac9fb216494fb3477b67a9240beebad779 (diff)
added vfs container support to gtk addfile/folder dialogs
Diffstat (limited to 'plugins/vfs_zip')
-rw-r--r--plugins/vfs_zip/vfs_zip.c8
1 files changed, 0 insertions, 8 deletions
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,
};