|
@@ -123,19 +123,19 @@ voidpf IOSystem2Unzip::open(voidpf opaque, const char* filename, int mode) {
|
|
|
uLong IOSystem2Unzip::read(voidpf /*opaque*/, voidpf stream, void* buf, uLong size) {
|
|
|
IOStream* io_stream = (IOStream*) stream;
|
|
|
|
|
|
- return io_stream->Read(buf, 1, size);
|
|
|
+ return static_cast<uLong>(io_stream->Read(buf, 1, size));
|
|
|
}
|
|
|
|
|
|
uLong IOSystem2Unzip::write(voidpf /*opaque*/, voidpf stream, const void* buf, uLong size) {
|
|
|
IOStream* io_stream = (IOStream*) stream;
|
|
|
|
|
|
- return io_stream->Write(buf, 1, size);
|
|
|
+ return static_cast<uLong>(io_stream->Write(buf, 1, size));
|
|
|
}
|
|
|
|
|
|
long IOSystem2Unzip::tell(voidpf /*opaque*/, voidpf stream) {
|
|
|
IOStream* io_stream = (IOStream*) stream;
|
|
|
|
|
|
- return io_stream->Tell();
|
|
|
+ return static_cast<long>(io_stream->Tell());
|
|
|
}
|
|
|
|
|
|
long IOSystem2Unzip::seek(voidpf /*opaque*/, voidpf stream, uLong offset, int origin) {
|