summaryrefslogtreecommitdiffstats
path: root/vm/JarFile.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm/JarFile.h')
-rw-r--r--vm/JarFile.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/vm/JarFile.h b/vm/JarFile.h
index d8fd99881..b3a8a0f2e 100644
--- a/vm/JarFile.h
+++ b/vm/JarFile.h
@@ -19,12 +19,14 @@
#ifndef DALVIK_JARFILE_H_
#define DALVIK_JARFILE_H_
+#include "libdex/ZipArchive.h"
+
/*
* This represents an open, scanned Jar file. (It's actually for any Zip
* archive that happens to hold a Dex file.)
*/
struct JarFile {
- ZipArchive archive;
+ ZipArchiveHandle archive;
//MemMapping map;
char* cacheFileName;
DvmDex* pDvmDex;