2513d06633
Tweaks by Curt to progress bar, plus sanity checks on included uninstall box entries.
10 lines
334 B
C++
10 lines
334 B
C++
#include <string>
|
|
|
|
using std::string;
|
|
|
|
// list the contents of the specified tar file
|
|
// bool tarlist( char *tarfile, char *destdir, bool verbose );
|
|
|
|
// extract the specified tar file into the specified destination
|
|
// directory
|
|
extern "C" void tarextract( char *tarfile, char *destdir, int verbose, void (*step)(void*), void *data );
|