Imported Upstream version 5.16.0.100

Former-commit-id: 38faa55fb9669e35e7d8448b15c25dc447f25767
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-08-07 15:19:03 +00:00
parent 0a9828183b
commit 7d7f676260
4419 changed files with 170950 additions and 90273 deletions

View File

@@ -29,42 +29,49 @@
#define SEEK_SET 0
#endif
static
voidpf ZCALLBACK fopen_file_func OF((
voidpf opaque,
const char* filename,
int mode));
static
uLong ZCALLBACK fread_file_func OF((
voidpf opaque,
voidpf stream,
void* buf,
uLong size));
static
uLong ZCALLBACK fwrite_file_func OF((
voidpf opaque,
voidpf stream,
const void* buf,
uLong size));
static
long ZCALLBACK ftell_file_func OF((
voidpf opaque,
voidpf stream));
static
long ZCALLBACK fseek_file_func OF((
voidpf opaque,
voidpf stream,
uLong offset,
int origin));
static
int ZCALLBACK fclose_file_func OF((
voidpf opaque,
voidpf stream));
static
int ZCALLBACK ferror_file_func OF((
voidpf opaque,
voidpf stream));
static
voidpf ZCALLBACK fopen_file_func (opaque, filename, mode)
voidpf opaque;
const char* filename;
@@ -86,7 +93,7 @@ voidpf ZCALLBACK fopen_file_func (opaque, filename, mode)
return file;
}
static
uLong ZCALLBACK fread_file_func (opaque, stream, buf, size)
voidpf opaque;
voidpf stream;
@@ -98,7 +105,7 @@ uLong ZCALLBACK fread_file_func (opaque, stream, buf, size)
return ret;
}
static
uLong ZCALLBACK fwrite_file_func (opaque, stream, buf, size)
voidpf opaque;
voidpf stream;
@@ -110,6 +117,7 @@ uLong ZCALLBACK fwrite_file_func (opaque, stream, buf, size)
return ret;
}
static
long ZCALLBACK ftell_file_func (opaque, stream)
voidpf opaque;
voidpf stream;
@@ -119,6 +127,7 @@ long ZCALLBACK ftell_file_func (opaque, stream)
return ret;
}
static
long ZCALLBACK fseek_file_func (opaque, stream, offset, origin)
voidpf opaque;
voidpf stream;
@@ -145,6 +154,7 @@ long ZCALLBACK fseek_file_func (opaque, stream, offset, origin)
return ret;
}
static
int ZCALLBACK fclose_file_func (opaque, stream)
voidpf opaque;
voidpf stream;
@@ -154,6 +164,7 @@ int ZCALLBACK fclose_file_func (opaque, stream)
return ret;
}
static
int ZCALLBACK ferror_file_func (opaque, stream)
voidpf opaque;
voidpf stream;