summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_disk_windows.c
Commit message (Expand)AuthorAgeFilesLines
* Use FILE_SHARE_WRITE and FILE_SHARE_DELETE when opening files on WindowsVladimir Kikhtenko2022-11-181-6/+12
* Merge pull request #1603 from evelikov/reader-filter-vtblMartin Matuška2022-02-051-17/+9
|\
| * archive: constify the archive::vtable dispatchEmil Velikov2021-10-231-17/+9
* | Merge pull request #1614 from diabonas/add-no-read-sparseMartin Matuška2021-11-211-6/+10
|\ \
| * | Add ARCHIVE_READDISK_NO_SPARSE to suppress reading sparse file infoJonas Witschel2021-11-141-6/+10
| |/
* | Cleaned up archive_read_disk_descend functions.jiat752021-10-271-1/+1
|/
* Windows: Use full path including prefix when looking up file handleAndy Brown2021-07-131-1/+1
* archive_read_next_header2: clean old entry dataDmitry Torokhov2019-06-261-0/+2
* Add support for Windows file attributes readonly, hidden and systemMartin Matuska2019-05-091-0/+26
* Windows symlinks: new functions and extended tar headerMartin Matuska2019-04-151-28/+31
* Add support for directory symlinks on WindowsMartin Matuska2019-03-271-4/+23
* Add basic read and write support for symbolic links on WindowsMartin Matuska2019-03-261-2/+130
* Fix sparse tests windowsBenjaminTrapani2018-01-201-6/+6
* Windows: set errno on CreateFileW failureJohn Starks2017-11-021-0/+1
* Match archive.h for la_int64_t vs int64_tJoerg Sonnenberger2017-10-071-3/+3
* Use ARCHIVE_READDISK_* flags as a internal bitfield, tooMartin Matuska2017-02-221-20/+10
* Spelling fixesGraham Percival2016-12-301-1/+1
* Spelling fixes (#846)Graham Percival2016-12-201-1/+1
* Spelling fix in "struct tree{}" codeGraham Percival2016-12-081-3/+3
* Spelling fixesGraham Percival2016-12-081-2/+2
* Replace malloc + memset with calloc.Joerg Sonnenberger2016-12-061-6/+3
* Fix a couple of typographical errors.Peter Pentchev2016-07-071-3/+3
* Fix spelling typos in commentsBrad King2016-05-021-1/+1
* Add archive_read_next_header support to archive_read_disk traversals, in addi...Tim Kientzle2015-07-261-0/+16
* Whitespace cleanup after 41965bfTim Kientzle2015-07-051-2/+1
* Add support for archive_read_data() for read_disk archives.Paul Harris2015-06-301-0/+2
* remove duplicate expressions in entry_copy_bhfi()Maks Naumov2014-04-171-2/+0
* Do not require exclusive read access when reading files under windowsBenoît Amiaux2013-01-041-4/+4
* Plug address space leaks on Windows.Michihiro NAKAJIMA2012-12-031-1/+1
* Fix build failure on Win64.Michihiro NAKAJIMA2012-11-071-4/+4
* Fix build failure on mingw32.Michihiro NAKAJIMA2012-10-041-1/+1
* Fix a possibility of memory leaks when realloc fails.Michihiro NAKAJIMA2012-09-181-3/+5
* archive_read_disk_windows.c: Fix typo in allocation error messageBrad King2012-07-311-1/+1
* Improve directory traversals on Windows to surely clear an archive_entryMichihiro NAKAJIMA2012-02-261-32/+36
* On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1'Michihiro NAKAJIMA2012-02-191-3/+3
* Fix build failure in aggressive warnings on msys.Michihiro NAKAJIMA2012-02-161-3/+3
* Fix issue 241:CAB decompression not 64bit compatible.Michihiro NAKAJIMA2012-02-161-1/+0
* Rename archive_matching to archive_match.Michihiro NAKAJIMA2012-02-081-3/+3
* When ENOMEM happened in archive_string_append_from_wcs and archive_string_app...Michihiro NAKAJIMA2012-01-231-2/+6
* Properly generate errno by la_dosmapper() and pass it to archive_set_error() ...Michihiro NAKAJIMA2012-01-211-16/+25
* Do not return ARCHIVE_WARN even if the current file cannot descend, simply re...Michihiro NAKAJIMA2012-01-191-5/+2
* Implement optional behavior of archive_read_disk that do not traverse mount p...Michihiro NAKAJIMA2012-01-191-3/+13
* Add archive_read_disk_set_behavior function and drop archive_read_disk_honor_...Michihiro NAKAJIMA2012-01-191-12/+25
* Delete archive_matching_path_excluded and archive_matching_path_excluded_w.Michihiro NAKAJIMA2012-01-181-4/+3
* Cast away archive_read_disk_set_name_filter_callback and add archive_read_dis...Michihiro NAKAJIMA2012-01-181-16/+75
* Introduce archive_read_disk_disable_mac_copyfile() to eliminate the macMichihiro NAKAJIMA2012-01-071-0/+10
* Make sure remaining asynchronous reads are canceled whenever something unexpe...Michihiro NAKAJIMA2012-01-051-4/+12
* Improve handing a wildcard which has "//?/" prefix.Michihiro NAKAJIMA2012-01-041-3/+6
* Clean up; remove unused including files and macros, which originally came fro...Michihiro NAKAJIMA2012-01-031-53/+10
* Implement asynchronous read in directory traversals on Windows.Michihiro NAKAJIMA2012-01-031-98/+201