Home
last modified time | relevance | path

Searched refs:ZCALLBACK (Results 1 – 3 of 3) sorted by relevance

/external/zlib/contrib/minizip/
Dioapi.h116 #ifndef ZCALLBACK
118 #define ZCALLBACK CALLBACK macro
120 #define ZCALLBACK
127 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode…
128 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLon…
129 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf…
130 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
131 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
133 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
134 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, i…
[all …]
Dioapi.c75 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
76 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
77 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong s…
78 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream));
79 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int o…
80 static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream));
81 static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream));
83 static voidpf ZCALLBACK fopen_file_func (voidpf opaque, const char* filename, int mode) in fopen_file_func()
101 static voidpf ZCALLBACK fopen64_file_func (voidpf opaque, const void* filename, int mode) in fopen64_file_func()
120 static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size) in fread_file_func()
[all …]
Diowin32.c28 voidpf ZCALLBACK win32_open_file_func OF((voidpf opaque, const char* filename, int mode));
29 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
30 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong si…
31 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream));
32 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int or…
33 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream));
34 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream));
88 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) in win32_open64_file_func()
103 voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int mode) in win32_open64_file_funcA()
118 voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,const void* filename,int mode) in win32_open64_file_funcW()
[all …]