| 325 | } |
| 326 | |
| 327 | void fill_qiodevice64_filefunc ( |
| 328 | zlib_filefunc64_def* pzlib_filefunc_def) |
| 329 | { |
| 330 | // Open functions are the same for Qt. |
| 331 | pzlib_filefunc_def->zopen64_file = qiodevice_open_file_func; |
| 332 | pzlib_filefunc_def->zread_file = qiodevice_read_file_func; |
| 333 | pzlib_filefunc_def->zwrite_file = qiodevice_write_file_func; |
| 334 | pzlib_filefunc_def->ztell64_file = qiodevice64_tell_file_func; |
| 335 | pzlib_filefunc_def->zseek64_file = qiodevice64_seek_file_func; |
| 336 | pzlib_filefunc_def->zclose_file = qiodevice_close_file_func; |
| 337 | pzlib_filefunc_def->zerror_file = qiodevice_error_file_func; |
| 338 | pzlib_filefunc_def->opaque = new QIODevice_descriptor; |
| 339 | pzlib_filefunc_def->zfakeclose_file = qiodevice_fakeclose_file_func; |
| 340 | } |
| 341 | |
| 342 | void fill_zlib_filefunc64_32_def_from_filefunc32(zlib_filefunc64_32_def* p_filefunc64_32,const zlib_filefunc_def* p_filefunc32) |
| 343 | { |
no outgoing calls
no test coverage detected