~ubuntu-branches/ubuntu/precise/arj/precise-security

« back to all changes in this revision

Viewing changes to arj_user.h

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2004-06-27 08:07:09 UTC
  • Revision ID: james.westby@ubuntu.com-20040627080709-1gkxm72ex66gkwe4
Tags: upstream-3.10.21
ImportĀ upstreamĀ versionĀ 3.10.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: arj_user.h,v 1.1.1.1 2002/03/28 00:02:01 andrew_belov Exp $
 
3
 * ---------------------------------------------------------------------------
 
4
 * Prototypes of the functions located in ARJ_USER.C are declared here.
 
5
 *
 
6
 */
 
7
 
 
8
#ifndef ARJ_USER_INCLUDED
 
9
#define ARJ_USER_INCLUDED
 
10
 
 
11
/* Prototypes */
 
12
 
 
13
void arj_user_msg(FMSG *text);
 
14
int test_host_os(int os);
 
15
char *form_prot_name();
 
16
int destfile_extr_validation();
 
17
void write_index_entry(char *prefix);
 
18
#if SFX_LEVEL>=ARJ
 
19
void perform_cmd(int cmd);
 
20
#else
 
21
void perform_cmd();
 
22
#endif
 
23
 
 
24
#if SFX_LEVEL<=ARJSFX
 
25
void process_archive();
 
26
#endif
 
27
 
 
28
#endif