~ubuntu-branches/ubuntu/karmic/xarchiver/karmic

« back to all changes in this revision

Viewing changes to src/tar.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-11-07 14:54:00 UTC
  • mfrom: (1.1.7 upstream) (2.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20081107145400-z0j3jmgads8coae2
Tags: 0.5.1-1
MergingĀ upstreamĀ versionĀ 0.5.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#define TAR_H
21
21
 
22
22
#include <gtk/gtk.h>
23
 
#include "interface.h"
24
 
#include "callbacks.h"
25
 
#include "main.h"
 
23
#include <stdlib.h>
 
24
#include <unistd.h>
 
25
#include "string_utils.h"
 
26
#include "support.h"
26
27
#include "archive.h"
 
28
#include "gzip.h"
27
29
 
28
 
void OpenTar ( XArchive *archive );
29
 
gboolean TarOpen (GIOChannel *ioc, GIOCondition cond, gpointer data);
 
30
void xa_open_tar ( XArchive * );
 
31
void xa_tar_delete (XArchive *,GSList *);
 
32
void xa_tar_add (XArchive *,GString *,gchar *);
 
33
gboolean xa_tar_extract(XArchive *,GSList *);
 
34
void xa_get_tar_line_content (gchar *, gpointer );
 
35
gboolean isTar (FILE *);
 
36
gboolean is_tar_compressed (gint );
 
37
void xa_add_delete_bzip2_gzip_lzma_compressed_tar (GString *,XArchive *,gboolean );
 
38
gboolean xa_extract_tar_without_directories ( gchar *, XArchive *,gchar *);
30
39
#endif
31
40