~ubuntu-branches/ubuntu/quantal/xarchiver/quantal

« back to all changes in this revision

Viewing changes to src/bzip2.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:
1
1
/*
2
 
 *  Copyright (C) 2006 Giuseppe Torelli <colossus73@gmail.com>
 
2
 *  Copyright (C) 2008 Giuseppe Torelli <colossus73@gmail.com>
3
3
 *
4
4
 *  This program is free software; you can redistribute it and/or modify
5
5
 *  it under the terms of the GNU General Public License as published by
15
15
 *  along with this program; if not, write to the Free Software
16
16
 *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
17
17
 */
18
 
 
 
18
 
19
19
#ifndef BZIP2_H
20
20
#define BZIP2_H
21
21
 
22
22
#include <gtk/gtk.h>
23
 
#include "callbacks.h"
24
 
#include "interface.h"
25
23
#include "support.h"
26
24
#include "main.h"
27
25
#include "archive.h"
28
26
 
29
 
void OpenBzip2 ( XArchive *archive );
30
 
void gzip_bzip2_extract ( XArchive *archive , gboolean flag );
31
 
void xa_add_delete_tar_bzip2_gzip ( GString *list , XArchive *archive , gboolean dummy , gboolean add );
32
 
GChildWatchFunc *AddToTar (GPid pid,gint status , gpointer data);
33
 
gboolean file_extension_is (const char *filename, const char *ext);
 
27
void xa_open_bzip2_lzma (XArchive *);
 
28
gboolean lzma_bzip2_extract (XArchive *,GSList*);
 
29
void xa_open_tar_compressed_file(XArchive *);
34
30
#endif