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

« back to all changes in this revision

Viewing changes to src/deb.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
#ifndef DEB_H
21
21
#define DEB_H
22
22
 
23
 
#include "callbacks.h"
 
23
#include <gtk/gtk.h>
 
24
#include <stdlib.h>
 
25
#include <unistd.h>
 
26
#include "tar.h"
 
27
#include "string_utils.h"
 
28
#include "support.h"
24
29
#include "archive.h"
25
30
 
26
 
void OpenDeb ( XArchive *archive );
 
31
void xa_open_deb (XArchive *);
 
32
void xa_get_ar_line_content (gchar *, gpointer );
 
33
gboolean xa_deb_extract(XArchive *,GSList *);
27
34
#endif