Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / android_crazy_linker / src / src / crazy_linker_zip.h
index 6e289c0..cee3efe 100644 (file)
 namespace crazy {
 
 // Find "filename" in the specified "zip_file" and return the offset
-// in the file of the start of the data for the file. Return -1 on error.
-// This routine replaces code which used the minizip library, but is about
-// 150 times faster, locating the offset in less than 0.5ms on a Nexus 4.
+// in the file of the start of the data for the file. Return
+// CRAZY_OFFSET_FAILED on error or if the file is compressed. This routine
+// replaces code which used the minizip library, but is about 150 times faster,
+// locating the offset in less than 0.5ms on a Nexus 4.
 int FindStartOffsetOfFileInZipFile(const char* zip_file, const char* filename);
 
 }