1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
/*
* $Id: arj.h,v 1.4 2003/04/27 20:54:41 andrew_belov Exp $
* ---------------------------------------------------------------------------
* This file must be included FIRST in all modules. It defines the system-wide
* equates and types, as well as it does some compiler-specific job.
*
*/
#ifndef ARJ_INCLUDED
#define ARJ_INCLUDED
#include "bindings.h"
#include "environ.h"
#include "defines.h"
#include "arjtypes.h"
#if SFX_LEVEL!=ARJSFXJR
#include "filemode.h"
#include "file_reg.h"
#include "encode.h"
#include "decode.h"
#include "enc_gwy.h"
#include "fardata.h"
#include "arj_user.h"
#include "ext_hdr.h"
#include "arj_arcv.h"
#include "arj_file.h"
#endif
#include "crc32.h"
#if SFX_LEVEL!=ARJSFXJR
#include "exe_sear.h"
#include "chk_fmsg.h"
#include "filelist.h"
#include "arj_proc.h"
#include "arjsec_h.h"
#include "arjsec_l.h"
#include "debug.h"
#include "misc.h"
#include "ntstream.h"
#include "ea_mgr.h"
#include "uxspec.h"
#include "garble.h"
#endif
#if SFX_LEVEL>=ARJSFXV||defined(ARJDISP)||defined(REARJ)
#include "scrnio.h"
#endif
#if SFX_LEVEL!=ARJSFXJR
#include "ansi.h"
#include "recovery.h"
#include "crc16tab.h"
#include "gost.h"
#include "gost_t.h"
#include "gost40.h"
#endif
#if SFX_LEVEL==ARJ
#include <msg_arj.h>
#elif SFX_LEVEL==ARJSFXV
#include <msg_sfv.h>
#elif SFX_LEVEL==ARJSFX
#include <msg_sfx.h>
#elif SFX_LEVEL==ARJSFXJR
#include <msg_sfj.h>
#elif defined(REARJ)
#include <msg_rej.h>
#elif defined(REGISTER)
#include <msg_reg.h>
#elif defined(ARJDISP)
#include <msg_adi.h>
#elif defined(SFXSTUB)
#include <msg_stb.h>
#endif
#if SFX_LEVEL<=ARJSFXV&&SFX_LEVEL>=ARJSFX
#include "arjsfx.h"
#endif
#if SFX_LEVEL>=ARJSFX||defined(REARJ)||defined(REGISTER)
#include "externs.h"
#endif
#ifdef REARJ
#include "rearj.h"
#endif
#if SFX_LEVEL>=ARJ
/* Prototypes */
void create_excl_list(char *names);
void exec_cmd(char *cmd);
#endif
#endif
|