home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / compress / all2lha.lha / All2Lha / Source / All2Lha.h < prev    next >
C/C++ Source or Header  |  1992-11-13  |  436b  |  21 lines

  1. #define AVANT_CREER_LHA            1
  2. #define APRES_CREER_LHA            2
  3. #define N_EFFACE_PAS                4
  4.  
  5. struct Archiveur
  6. {
  7.     UBYTE *Extension;
  8.     UBYTE Desarchive[30];
  9. /* Je laisse de l'espace pour que les gens puissent modifier les arguments 
  10.     s'il le veulent */
  11. };
  12.  
  13. #define NB_D_ARCHIVEUR            5
  14. struct Archiveur archiveur[NB_D_ARCHIVEUR] =
  15. {
  16.     { "LZH", "lha -x -a -m e"},
  17.     { "ARC", "arc e "},
  18.     { "ZOO", "zoo x//"},
  19.     { "ZIP", "unzip -x"},
  20.     { "ARJ", "unarj x"}
  21. };