19e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project/* ioapi.h -- IO base function header for compress/uncompress .zip
2381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes   part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
39e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
4381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes         Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
59e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
6381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes         Modifications for Zip64 support
7381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes         Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
8381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
9381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes         For more info read MiniZip_info.txt
10381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
11381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes         Changes
12381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
13381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    Oct-2009 - Defined ZPOS64_T to fpos_t on windows and u_int64_t on linux. (might need to find a better why for this)
14381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    Oct-2009 - Change to fseeko64, ftello64 and fopen64 so large files would work on linux.
15381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes               More if/def section may be needed to support other platforms
16381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    Oct-2009 - Defined fxxxx64 calls to normal fopen/ftell/fseek so they would compile on windows.
17381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes                          (but you should use iowin32.c for windows instead)
18381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
19381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes*/
20381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
21381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifndef _ZLIBIOAPI64_H
22381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define _ZLIBIOAPI64_H
23381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
24ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__))
25381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
26381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  // Linux needs this to support file operation on files larger then 4+GB
27381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  // But might need better if/def to select just the platforms that needs them.
28381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
29381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #ifndef __USE_FILE_OFFSET64
30381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes                #define __USE_FILE_OFFSET64
31381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #endif
32381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #ifndef __USE_LARGEFILE64
33381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes                #define __USE_LARGEFILE64
34381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #endif
35381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #ifndef _LARGEFILE64_SOURCE
36381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes                #define _LARGEFILE64_SOURCE
37381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #endif
38381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #ifndef _FILE_OFFSET_BIT
39381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes                #define _FILE_OFFSET_BIT 64
40381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes        #endif
41ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes
42381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
43381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
44381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#include <stdio.h>
45381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#include <stdlib.h>
46381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#include "zlib.h"
47381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
48381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#if defined(USE_FILE32API)
49381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define fopen64 fopen
50381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ftello64 ftell
51381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define fseeko64 fseek
52381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#else
53ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#ifdef __FreeBSD__
54ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#define fopen64 fopen
55ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#define ftello64 ftello
56ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#define fseeko64 fseeko
57ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#endif
58381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifdef _MSC_VER
59381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #define fopen64 fopen
60381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #if (_MSC_VER >= 1400) && (!(defined(NO_MSCVER_FILE64_FUNC)))
61381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #define ftello64 _ftelli64
62381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #define fseeko64 _fseeki64
63381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #else // old MSC
64381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #define ftello64 ftell
65381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #define fseeko64 fseek
66381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #endif
67381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
68381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
69381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
70381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes/*
71381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifndef ZPOS64_T
72381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #ifdef _WIN32
73381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes                #define ZPOS64_T fpos_t
74381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #else
75381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    #include <stdint.h>
76381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    #define ZPOS64_T uint64_t
77381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes  #endif
78381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
799e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project*/
809e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
81381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifdef HAVE_MINIZIP64_CONF_H
82381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#include "mz64conf.h"
83381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
84381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
85381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes/* a type choosen by DEFINE */
86381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifdef HAVE_64BIT_INT_CUSTOM
87381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef  64BIT_INT_CUSTOM_TYPE ZPOS64_T;
88381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#else
89381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifdef HAS_STDINT_H
90381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#include "stdint.h"
91381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef uint64_t ZPOS64_T;
92381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#else
93381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
94ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes/* Maximum unsigned 32-bit value used as placeholder for zip64 */
95ee9e11d0d4e3361533860bf04896abb86a291bfbElliott Hughes#define MAXU32 0xffffffff
96381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
97381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#if defined(_MSC_VER) || defined(__BORLANDC__)
98381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef unsigned __int64 ZPOS64_T;
99381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#else
100381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef unsigned long long int ZPOS64_T;
101381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
102381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
103381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
104381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
105381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
106381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
107381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#ifdef __cplusplus
108381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughesextern "C" {
109381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#endif
1109e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1119e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1129e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_SEEK_CUR (1)
1139e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_SEEK_END (2)
1149e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_SEEK_SET (0)
1159e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1169e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_MODE_READ      (1)
1179e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_MODE_WRITE     (2)
1189e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_MODE_READWRITEFILTER (3)
1199e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1209e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_MODE_EXISTING (4)
1219e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#define ZLIB_FILEFUNC_MODE_CREATE   (8)
1229e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1239e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1249e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#ifndef ZCALLBACK
125381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #if (defined(WIN32) || defined(_WIN32) || defined (WINDOWS) || defined (_WINDOWS)) && defined(CALLBACK) && defined (USEWINDOWS_CALLBACK)
126381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes   #define ZCALLBACK CALLBACK
127381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #else
128381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes   #define ZCALLBACK
129381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes #endif
1309e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#endif
1319e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1329e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
1339e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
134381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
135381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef voidpf   (ZCALLBACK *open_file_func)      OF((voidpf opaque, const char* filename, int mode));
136381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef uLong    (ZCALLBACK *read_file_func)      OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef uLong    (ZCALLBACK *write_file_func)     OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef int      (ZCALLBACK *close_file_func)     OF((voidpf opaque, voidpf stream));
139381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef int      (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
140381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
141381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef long     (ZCALLBACK *tell_file_func)      OF((voidpf opaque, voidpf stream));
142381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef long     (ZCALLBACK *seek_file_func)      OF((voidpf opaque, voidpf stream, uLong offset, int origin));
143381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
144381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
145381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes/* here is the "old" 32 bits structure structure */
1469e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Projecttypedef struct zlib_filefunc_def_s
1479e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project{
1489e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    open_file_func      zopen_file;
1499e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    read_file_func      zread_file;
1509e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    write_file_func     zwrite_file;
1519e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    tell_file_func      ztell_file;
1529e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    seek_file_func      zseek_file;
1539e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    close_file_func     zclose_file;
1549e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    testerror_file_func zerror_file;
1559e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project    voidpf              opaque;
1569e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project} zlib_filefunc_def;
1579e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
158381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef ZPOS64_T (ZCALLBACK *tell64_file_func)    OF((voidpf opaque, voidpf stream));
159381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef long     (ZCALLBACK *seek64_file_func)    OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
160381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef voidpf   (ZCALLBACK *open64_file_func)    OF((voidpf opaque, const void* filename, int mode));
1619e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
162381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef struct zlib_filefunc64_def_s
163381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes{
164381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    open64_file_func    zopen64_file;
165381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    read_file_func      zread_file;
166381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    write_file_func     zwrite_file;
167381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    tell64_file_func    ztell64_file;
168381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    seek64_file_func    zseek64_file;
169381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    close_file_func     zclose_file;
170381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    testerror_file_func zerror_file;
171381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    voidpf              opaque;
172381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes} zlib_filefunc64_def;
1739e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
174381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughesvoid fill_fopen64_filefunc OF((zlib_filefunc64_def* pzlib_filefunc_def));
1759e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Projectvoid fill_fopen_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def));
1769e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
177381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes/* now internal definition, only for zip.c and unzip.h */
178381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughestypedef struct zlib_filefunc64_32_def_s
179381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes{
180381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    zlib_filefunc64_def zfile_func64;
181381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    open_file_func      zopen32_file;
182381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    tell_file_func      ztell32_file;
183381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes    seek_file_func      zseek32_file;
184381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes} zlib_filefunc64_32_def;
185381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
186381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
187381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZREAD64(filefunc,filestream,buf,size)     ((*((filefunc).zfile_func64.zread_file))   ((filefunc).zfile_func64.opaque,filestream,buf,size))
188381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZWRITE64(filefunc,filestream,buf,size)    ((*((filefunc).zfile_func64.zwrite_file))  ((filefunc).zfile_func64.opaque,filestream,buf,size))
189381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes//#define ZTELL64(filefunc,filestream)            ((*((filefunc).ztell64_file)) ((filefunc).opaque,filestream))
190381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes//#define ZSEEK64(filefunc,filestream,pos,mode)   ((*((filefunc).zseek64_file)) ((filefunc).opaque,filestream,pos,mode))
191381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZCLOSE64(filefunc,filestream)             ((*((filefunc).zfile_func64.zclose_file))  ((filefunc).zfile_func64.opaque,filestream))
192381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZERROR64(filefunc,filestream)             ((*((filefunc).zfile_func64.zerror_file))  ((filefunc).zfile_func64.opaque,filestream))
1939e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
194381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughesvoidpf call_zopen64 OF((const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode));
195381716e9396b55b1adb8235b020c37344f60ab07Elliott Hugheslong    call_zseek64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin));
196381716e9396b55b1adb8235b020c37344f60ab07Elliott HughesZPOS64_T call_ztell64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream));
197381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
198381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughesvoid    fill_zlib_filefunc64_32_def_from_filefunc32(zlib_filefunc64_32_def* p_filefunc64_32,const zlib_filefunc_def* p_filefunc32);
199381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes
200381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZOPEN64(filefunc,filename,mode)         (call_zopen64((&(filefunc)),(filename),(mode)))
201381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZTELL64(filefunc,filestream)            (call_ztell64((&(filefunc)),(filestream)))
202381716e9396b55b1adb8235b020c37344f60ab07Elliott Hughes#define ZSEEK64(filefunc,filestream,pos,mode)   (call_zseek64((&(filefunc)),(filestream),(pos),(mode)))
2039e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
2049e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#ifdef __cplusplus
2059e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project}
2069e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#endif
2079e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project
2089e38dfa2f95fce609707a0941f10af9a785288deThe Android Open Source Project#endif
209