(file, password)
| 1199 | } |
| 1200 | |
| 1201 | extern int ZEXPORT unzOpenCurrentFilePassword (file, password) |
| 1202 | unzFile file; |
| 1203 | const char* password; |
| 1204 | { |
| 1205 | return unzOpenCurrentFile3(file, NULL, NULL, 0, password); |
| 1206 | } |
| 1207 | |
| 1208 | extern int ZEXPORT unzOpenCurrentFile2 (file,method,level,raw) |
| 1209 | unzFile file; |
nothing calls this directly
no test coverage detected