summaryrefslogtreecommitdiff
path: root/tar/bsdtar_windows.h
Commit message (Collapse)AuthorAgeFilesLines
* Fixes for VS2012 CompileHans Hinrichsen2015-05-041-0/+2
| | | | | | Updated includes in bsdtar_windows.h to bring in _setmode and _O_BINARY via io.h and fcntl.h Explicitly cast a few void * to their structs to suppress Intellisense warnings Moved variable in read_archive - VS2012 needs variables declared at the top of the block (does not support C99)
* fixes to build by Open Watcom toolchainJiri Malak2014-03-121-0/+4
|
* Style: tab follows #defineTim Kientzle2010-04-101-9/+9
| | | | SVN-Revision: 2226
* Don't #define read _read before including io.h.Tim Kientzle2009-12-271-1/+0
| | | | SVN-Revision: 1778
* Don't use _getcwd and _strdup on Borland C Compiler.Michihiro NAKAJIMA2009-12-181-0/+4
| | | | | | This is covering r1757. SVN-Revision: 1762
* Fix some compiler warnings in VS9.Tim Kientzle2009-09-131-0/+2
| | | | SVN-Revision: 1457
* Rename la_* functions to __tar_ functions in bsdtar, to avoidTim Kientzle2009-08-311-2/+2
| | | | | | link conflicts with the la_ functions in libarchive. SVN-Revision: 1413
* Trim down Windows shims for tar: A lot of this has simply gone away:Tim Kientzle2009-07-271-15/+14
| | | | | | | | * the open/read/write/close emulations were for the test harness, which now uses stdio, * mkdir() was for the test harness, which has been refactored so it's no longer needed here * opendir/readdir/closedir are only needed by tree.c and are being pushed down into tree.c SVN-Revision: 1296
* Remove unnecessary 'extern "C"' from private headers.Charles Wilson2009-07-221-8/+0
| | | | | | Correct include guard in archive_windows.h SVN-Revision: 1264
* Minor MinGW fixes.Charles Wilson2009-07-211-0/+3
| | | | | | | * bsdtar_windows.h: ensure struct bsdtar and struct archive are forward declared before declaring functions that take pointers to those types. SVN-Revision: 1260
* Minor MinGW fixes.Charles Wilson2009-07-211-0/+3
| | | | | | | * bsdtar_windows.h: New MinGW already defines PRId64; guard it. Ensure we have definition of MAX_PATH in time, by including windows.h. SVN-Revision: 1259
* Remove the attempt to determine "root" for Windows.Tim Kientzle2009-07-191-1/+0
| | | | | | | | It's not really feasible and just gets weirder the longer we look at it. We now assume different defaults only for the root user on non-Windows systems. SVN-Revision: 1238
* Revert r838,r839 and r840.Michihiro NAKAJIMA2009-03-251-0/+11
| | | | SVN-Revision: 842
* Remove a lot of duplicate functions which simulates POSIXMichihiro NAKAJIMA2009-03-241-11/+0
| | | | | | | | | | | | function for Windows platform. And move the remaining simulate functions to archive_windows.[ch]. It will be easy maintenance and avoid the same named functions having different codes. This change does *not* mean libarchive library has those ones or exports it. All libarchive's executable programs include archive_windows.c for one of its program files. SVN-Revision: 838
* On Windows, remove la_exit function which is used for debugging.Michihiro NAKAJIMA2009-03-051-3/+0
| | | | SVN-Revision: 726
* Windows shell whose name is command.exe/cmd.exe does notMichihiro NAKAJIMA2009-02-201-0/+4
| | | | | | | | deal with wildcard characters '*' and '?'. Windows application should handle those characters by FindFirstFile() Win32 API for usability. SVN-Revision: 678
* Now, we can run bsdtar and bsdtar_test on Windows.Michihiro NAKAJIMA2009-02-151-0/+58
But those need more improvement. bsdtar_test reported many errors. SVN-Revision: 629