~ubuntu-branches/ubuntu/jaunty/xarchiver/jaunty

« back to all changes in this revision

Viewing changes to src/arj.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
20
20
#define ARJ_H
21
21
 
22
22
#include <gtk/gtk.h>
23
 
#include "callbacks.h"
24
 
#include "interface.h"
25
 
#include "main.h"
 
23
#include <string.h>
 
24
#include <stdlib.h>
 
25
#include "string_utils.h"
 
26
#include "support.h"
26
27
#include "archive.h"
27
 
 
28
 
void OpenArj ( XArchive *archive );
29
 
gboolean no_attr;
 
28
gboolean jump_header, encrypted, last_line;
 
29
unsigned short int arj_line;
 
30
void xa_arj_delete (XArchive *,GSList *);
 
31
void xa_arj_add (XArchive *,GString *,gchar *);
 
32
gboolean xa_arj_extract(XArchive *,GSList *);
 
33
void xa_arj_test (XArchive *);
 
34
void xa_get_arj_line_content (gchar *line, gpointer data);
 
35
void xa_open_arj (XArchive *archive);
30
36
#endif