@@ -500,7 +500,7 @@ static unzFile unzOpenInternal(const void *path, zlib_filefunc64_32_def *pzlib_f
500
500
return (unzFile)s;
501
501
}
502
502
503
- extern unzFile ZEXPORT unzOpen2 (const char *path, zlib_filefunc_def *pzlib_filefunc32_def)
503
+ ZEXTERN unzFile ZEXPORT unzOpen2 (const char *path, zlib_filefunc_def *pzlib_filefunc32_def)
504
504
{
505
505
if (pzlib_filefunc32_def != NULL )
506
506
{
@@ -511,7 +511,7 @@ extern unzFile ZEXPORT unzOpen2(const char *path, zlib_filefunc_def *pzlib_filef
511
511
return unzOpenInternal (path, NULL );
512
512
}
513
513
514
- extern unzFile ZEXPORT unzOpen2_64 (const void *path, zlib_filefunc64_def *pzlib_filefunc_def)
514
+ ZEXTERN unzFile ZEXPORT unzOpen2_64 (const void *path, zlib_filefunc64_def *pzlib_filefunc_def)
515
515
{
516
516
if (pzlib_filefunc_def != NULL )
517
517
{
@@ -524,17 +524,17 @@ extern unzFile ZEXPORT unzOpen2_64(const void *path, zlib_filefunc64_def *pzlib_
524
524
return unzOpenInternal (path, NULL );
525
525
}
526
526
527
- extern unzFile ZEXPORT unzOpen (const char *path)
527
+ ZEXTERN unzFile ZEXPORT unzOpen (const char *path)
528
528
{
529
529
return unzOpenInternal (path, NULL );
530
530
}
531
531
532
- extern unzFile ZEXPORT unzOpen64 (const void *path)
532
+ ZEXTERN unzFile ZEXPORT unzOpen64 (const void *path)
533
533
{
534
534
return unzOpenInternal (path, NULL );
535
535
}
536
536
537
- extern int ZEXPORT unzClose (unzFile file)
537
+ ZEXTERN int ZEXPORT unzClose (unzFile file)
538
538
{
539
539
unz64_internal *s;
540
540
if (file == NULL )
@@ -598,7 +598,7 @@ static int unzGoToNextDisk(unzFile file)
598
598
return UNZ_OK;
599
599
}
600
600
601
- extern int ZEXPORT unzGetGlobalInfo (unzFile file, unz_global_info* pglobal_info32)
601
+ ZEXTERN int ZEXPORT unzGetGlobalInfo (unzFile file, unz_global_info* pglobal_info32)
602
602
{
603
603
unz64_internal *s = NULL ;
604
604
if (file == NULL )
@@ -611,7 +611,7 @@ extern int ZEXPORT unzGetGlobalInfo(unzFile file, unz_global_info* pglobal_info3
611
611
return UNZ_OK;
612
612
}
613
613
614
- extern int ZEXPORT unzGetGlobalInfo64 (unzFile file, unz_global_info64 *pglobal_info)
614
+ ZEXTERN int ZEXPORT unzGetGlobalInfo64 (unzFile file, unz_global_info64 *pglobal_info)
615
615
{
616
616
unz64_internal *s = NULL ;
617
617
if (file == NULL )
@@ -621,7 +621,7 @@ extern int ZEXPORT unzGetGlobalInfo64(unzFile file, unz_global_info64 *pglobal_i
621
621
return UNZ_OK;
622
622
}
623
623
624
- extern int ZEXPORT unzGetGlobalComment (unzFile file, char *comment, uint16_t comment_size)
624
+ ZEXTERN int ZEXPORT unzGetGlobalComment (unzFile file, char *comment, uint16_t comment_size)
625
625
{
626
626
unz64_internal *s = NULL ;
627
627
uint16_t bytes_to_read = comment_size;
@@ -897,7 +897,7 @@ static int unzGetCurrentFileInfoInternal(unzFile file, unz_file_info64 *pfile_in
897
897
return err;
898
898
}
899
899
900
- extern int ZEXPORT unzGetCurrentFileInfo (unzFile file, unz_file_info *pfile_info, char *filename,
900
+ ZEXTERN int ZEXPORT unzGetCurrentFileInfo (unzFile file, unz_file_info *pfile_info, char *filename,
901
901
uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, uint16_t comment_size)
902
902
{
903
903
unz_file_info64 file_info64;
@@ -929,7 +929,7 @@ extern int ZEXPORT unzGetCurrentFileInfo(unzFile file, unz_file_info *pfile_info
929
929
return err;
930
930
}
931
931
932
- extern int ZEXPORT unzGetCurrentFileInfo64 (unzFile file, unz_file_info64 * pfile_info, char *filename,
932
+ ZEXTERN int ZEXPORT unzGetCurrentFileInfo64 (unzFile file, unz_file_info64 * pfile_info, char *filename,
933
933
uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, uint16_t comment_size)
934
934
{
935
935
return unzGetCurrentFileInfoInternal (file, pfile_info, NULL , filename, filename_size,
@@ -1034,7 +1034,7 @@ static int unzCheckCurrentFileCoherencyHeader(unz64_internal *s, uint32_t *psize
1034
1034
Open for reading data the current file in the zipfile.
1035
1035
If there is no error and the file is opened, the return value is UNZ_OK.
1036
1036
*/
1037
- extern int ZEXPORT unzOpenCurrentFile3 (unzFile file, int *method, int *level, int raw, const char *password)
1037
+ ZEXTERN int ZEXPORT unzOpenCurrentFile3 (unzFile file, int *method, int *level, int raw, const char *password)
1038
1038
{
1039
1039
unz64_internal *s = NULL ;
1040
1040
file_in_zip64_read_info_s *pfile_in_zip_read_info = NULL ;
@@ -1267,17 +1267,17 @@ extern int ZEXPORT unzOpenCurrentFile3(unzFile file, int *method, int *level, in
1267
1267
return UNZ_OK;
1268
1268
}
1269
1269
1270
- extern int ZEXPORT unzOpenCurrentFile (unzFile file)
1270
+ ZEXTERN int ZEXPORT unzOpenCurrentFile (unzFile file)
1271
1271
{
1272
1272
return unzOpenCurrentFile3 (file, NULL , NULL , 0 , NULL );
1273
1273
}
1274
1274
1275
- extern int ZEXPORT unzOpenCurrentFilePassword (unzFile file, const char *password)
1275
+ ZEXTERN int ZEXPORT unzOpenCurrentFilePassword (unzFile file, const char *password)
1276
1276
{
1277
1277
return unzOpenCurrentFile3 (file, NULL , NULL , 0 , password);
1278
1278
}
1279
1279
1280
- extern int ZEXPORT unzOpenCurrentFile2 (unzFile file, int *method, int *level, int raw)
1280
+ ZEXTERN int ZEXPORT unzOpenCurrentFile2 (unzFile file, int *method, int *level, int raw)
1281
1281
{
1282
1282
return unzOpenCurrentFile3 (file, method, level, raw, NULL );
1283
1283
}
@@ -1289,7 +1289,7 @@ extern int ZEXPORT unzOpenCurrentFile2(unzFile file, int *method, int *level, in
1289
1289
return the number of byte copied if some bytes are copied
1290
1290
return 0 if the end of file was reached
1291
1291
return <0 with error code if there is an error (UNZ_ERRNO for IO error, or zLib error for uncompress error) */
1292
- extern int ZEXPORT unzReadCurrentFile (unzFile file, voidp buf, uint32_t len)
1292
+ ZEXTERN int ZEXPORT unzReadCurrentFile (unzFile file, voidp buf, uint32_t len)
1293
1293
{
1294
1294
unz64_internal *s = NULL ;
1295
1295
uint32_t read = 0 ;
@@ -1564,7 +1564,7 @@ extern int ZEXPORT unzReadCurrentFile(unzFile file, voidp buf, uint32_t len)
1564
1564
return err;
1565
1565
}
1566
1566
1567
- extern int ZEXPORT unzGetLocalExtrafield (unzFile file, voidp buf, uint32_t len)
1567
+ ZEXTERN int ZEXPORT unzGetLocalExtrafield (unzFile file, voidp buf, uint32_t len)
1568
1568
{
1569
1569
unz64_internal *s = NULL ;
1570
1570
uint64_t size_to_read = 0 ;
@@ -1600,7 +1600,7 @@ extern int ZEXPORT unzGetLocalExtrafield(unzFile file, voidp buf, uint32_t len)
1600
1600
return (int )read_now;
1601
1601
}
1602
1602
1603
- extern int ZEXPORT unzCloseCurrentFile (unzFile file)
1603
+ ZEXTERN int ZEXPORT unzCloseCurrentFile (unzFile file)
1604
1604
{
1605
1605
unz64_internal *s = NULL ;
1606
1606
file_in_zip64_read_info_s *pfile_in_zip_read_info = NULL ;
@@ -1665,7 +1665,7 @@ extern int ZEXPORT unzCloseCurrentFile(unzFile file)
1665
1665
return err;
1666
1666
}
1667
1667
1668
- extern int ZEXPORT unzGoToFirstFile2 (unzFile file, unz_file_info64 *pfile_info, char *filename,
1668
+ ZEXTERN int ZEXPORT unzGoToFirstFile2 (unzFile file, unz_file_info64 *pfile_info, char *filename,
1669
1669
uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, uint16_t comment_size)
1670
1670
{
1671
1671
unz64_internal *s = NULL ;
@@ -1691,12 +1691,12 @@ extern int ZEXPORT unzGoToFirstFile2(unzFile file, unz_file_info64 *pfile_info,
1691
1691
return err;
1692
1692
}
1693
1693
1694
- extern int ZEXPORT unzGoToFirstFile (unzFile file)
1694
+ ZEXTERN int ZEXPORT unzGoToFirstFile (unzFile file)
1695
1695
{
1696
1696
return unzGoToFirstFile2 (file, NULL , NULL , 0 , NULL , 0 , NULL , 0 );
1697
1697
}
1698
1698
1699
- extern int ZEXPORT unzGoToNextFile2 (unzFile file, unz_file_info64 *pfile_info, char *filename,
1699
+ ZEXTERN int ZEXPORT unzGoToNextFile2 (unzFile file, unz_file_info64 *pfile_info, char *filename,
1700
1700
uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, uint16_t comment_size)
1701
1701
{
1702
1702
unz64_internal *s = NULL ;
@@ -1728,12 +1728,12 @@ extern int ZEXPORT unzGoToNextFile2(unzFile file, unz_file_info64 *pfile_info, c
1728
1728
return err;
1729
1729
}
1730
1730
1731
- extern int ZEXPORT unzGoToNextFile (unzFile file)
1731
+ ZEXTERN int ZEXPORT unzGoToNextFile (unzFile file)
1732
1732
{
1733
1733
return unzGoToNextFile2 (file, NULL , NULL , 0 , NULL , 0 , NULL , 0 );
1734
1734
}
1735
1735
1736
- extern int ZEXPORT unzLocateFile (unzFile file, const char *filename, unzFileNameComparer filename_compare_func)
1736
+ ZEXTERN int ZEXPORT unzLocateFile (unzFile file, const char *filename, unzFileNameComparer filename_compare_func)
1737
1737
{
1738
1738
unz64_internal *s = NULL ;
1739
1739
unz_file_info64 cur_file_info_saved;
@@ -1778,7 +1778,7 @@ extern int ZEXPORT unzLocateFile(unzFile file, const char *filename, unzFileName
1778
1778
return err;
1779
1779
}
1780
1780
1781
- extern int ZEXPORT unzGetFilePos (unzFile file, unz_file_pos *file_pos)
1781
+ ZEXTERN int ZEXPORT unzGetFilePos (unzFile file, unz_file_pos *file_pos)
1782
1782
{
1783
1783
unz64_file_pos file_pos64;
1784
1784
int err = unzGetFilePos64 (file, &file_pos64);
@@ -1790,7 +1790,7 @@ extern int ZEXPORT unzGetFilePos(unzFile file, unz_file_pos *file_pos)
1790
1790
return err;
1791
1791
}
1792
1792
1793
- extern int ZEXPORT unzGoToFilePos (unzFile file, unz_file_pos *file_pos)
1793
+ ZEXTERN int ZEXPORT unzGoToFilePos (unzFile file, unz_file_pos *file_pos)
1794
1794
{
1795
1795
unz64_file_pos file_pos64;
1796
1796
if (file_pos == NULL )
@@ -1800,7 +1800,7 @@ extern int ZEXPORT unzGoToFilePos(unzFile file, unz_file_pos *file_pos)
1800
1800
return unzGoToFilePos64 (file, &file_pos64);
1801
1801
}
1802
1802
1803
- extern int ZEXPORT unzGetFilePos64 (unzFile file, unz64_file_pos *file_pos)
1803
+ ZEXTERN int ZEXPORT unzGetFilePos64 (unzFile file, unz64_file_pos *file_pos)
1804
1804
{
1805
1805
unz64_internal *s = NULL ;
1806
1806
@@ -1815,7 +1815,7 @@ extern int ZEXPORT unzGetFilePos64(unzFile file, unz64_file_pos *file_pos)
1815
1815
return UNZ_OK;
1816
1816
}
1817
1817
1818
- extern int ZEXPORT unzGoToFilePos64 (unzFile file, const unz64_file_pos *file_pos)
1818
+ ZEXTERN int ZEXPORT unzGoToFilePos64 (unzFile file, const unz64_file_pos *file_pos)
1819
1819
{
1820
1820
unz64_internal *s = NULL ;
1821
1821
int err = UNZ_OK;
@@ -1835,7 +1835,7 @@ extern int ZEXPORT unzGoToFilePos64(unzFile file, const unz64_file_pos *file_pos
1835
1835
return err;
1836
1836
}
1837
1837
1838
- extern int32_t ZEXPORT unzGetOffset (unzFile file)
1838
+ ZEXTERN int32_t ZEXPORT unzGetOffset (unzFile file)
1839
1839
{
1840
1840
uint64_t offset64 = 0 ;
1841
1841
@@ -1845,7 +1845,7 @@ extern int32_t ZEXPORT unzGetOffset(unzFile file)
1845
1845
return (int32_t )offset64;
1846
1846
}
1847
1847
1848
- extern int64_t ZEXPORT unzGetOffset64 (unzFile file)
1848
+ ZEXTERN int64_t ZEXPORT unzGetOffset64 (unzFile file)
1849
1849
{
1850
1850
unz64_internal *s = NULL ;
1851
1851
@@ -1862,12 +1862,12 @@ extern int64_t ZEXPORT unzGetOffset64(unzFile file)
1862
1862
return s->pos_in_central_dir ;
1863
1863
}
1864
1864
1865
- extern int ZEXPORT unzSetOffset (unzFile file, uint32_t pos)
1865
+ ZEXTERN int ZEXPORT unzSetOffset (unzFile file, uint32_t pos)
1866
1866
{
1867
1867
return unzSetOffset64 (file, pos);
1868
1868
}
1869
1869
1870
- extern int ZEXPORT unzSetOffset64 (unzFile file, uint64_t pos)
1870
+ ZEXTERN int ZEXPORT unzSetOffset64 (unzFile file, uint64_t pos)
1871
1871
{
1872
1872
unz64_internal *s = NULL ;
1873
1873
int err = UNZ_OK;
@@ -1884,7 +1884,7 @@ extern int ZEXPORT unzSetOffset64(unzFile file, uint64_t pos)
1884
1884
return err;
1885
1885
}
1886
1886
1887
- extern int32_t ZEXPORT unzTell (unzFile file)
1887
+ ZEXTERN int32_t ZEXPORT unzTell (unzFile file)
1888
1888
{
1889
1889
unz64_internal *s = NULL ;
1890
1890
if (file == NULL )
@@ -1895,7 +1895,7 @@ extern int32_t ZEXPORT unzTell(unzFile file)
1895
1895
return (int32_t )s->pfile_in_zip_read ->stream .total_out ;
1896
1896
}
1897
1897
1898
- extern int64_t ZEXPORT unzTell64 (unzFile file)
1898
+ ZEXTERN int64_t ZEXPORT unzTell64 (unzFile file)
1899
1899
{
1900
1900
unz64_internal *s = NULL ;
1901
1901
if (file == NULL )
@@ -1906,12 +1906,12 @@ extern int64_t ZEXPORT unzTell64(unzFile file)
1906
1906
return s->pfile_in_zip_read ->total_out_64 ;
1907
1907
}
1908
1908
1909
- extern int ZEXPORT unzSeek (unzFile file, uint32_t offset, int origin)
1909
+ ZEXTERN int ZEXPORT unzSeek (unzFile file, uint32_t offset, int origin)
1910
1910
{
1911
1911
return unzSeek64 (file, offset, origin);
1912
1912
}
1913
1913
1914
- extern int ZEXPORT unzSeek64 (unzFile file, uint64_t offset, int origin)
1914
+ ZEXTERN int ZEXPORT unzSeek64 (unzFile file, uint64_t offset, int origin)
1915
1915
{
1916
1916
unz64_internal *s = NULL ;
1917
1917
uint64_t stream_pos_begin = 0 ;
@@ -1974,7 +1974,7 @@ extern int ZEXPORT unzSeek64(unzFile file, uint64_t offset, int origin)
1974
1974
return UNZ_OK;
1975
1975
}
1976
1976
1977
- extern int ZEXPORT unzEndOfFile (unzFile file)
1977
+ ZEXTERN int ZEXPORT unzEndOfFile (unzFile file)
1978
1978
{
1979
1979
unz64_internal *s = NULL ;
1980
1980
if (file == NULL )
0 commit comments