~ubuntu-branches/ubuntu/wily/unrar-nonfree/wily-proposed

« back to all changes in this revision

Viewing changes to options.hpp

  • Committer: Package Import Robot
  • Author(s): Martin Meredith
  • Date: 2012-02-14 22:39:32 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20120214223932-wi7jd1zvqed61bw2
Tags: 1:4.1.4-1
* New upstream release
* Updated Watch file
* Added build-indep and build-arch to rules file

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#define DEFAULT_RECVOLUMES  -10
7
7
 
8
8
enum PATH_EXCL_MODE {
9
 
  EXCL_UNCHANGED,      // Process paths as is (default).
 
9
  EXCL_UNCHANGED=0,    // Process paths as is (default).
10
10
  EXCL_SKIPWHOLEPATH,  // -ep  (exclude the path completely)
11
11
  EXCL_BASEPATH,       // -ep1 (exclude the base part of path)
12
12
  EXCL_SAVEFULLPATH,   // -ep2 (the full path without the disk letter)
20
20
enum {SOLID_NONE=0,SOLID_NORMAL=1,SOLID_COUNT=2,SOLID_FILEEXT=4,
21
21
      SOLID_VOLUME_DEPENDENT=8,SOLID_VOLUME_INDEPENDENT=16};
22
22
 
23
 
enum {ARCTIME_NONE,ARCTIME_KEEP,ARCTIME_LATEST};
 
23
enum {ARCTIME_NONE=0,ARCTIME_KEEP,ARCTIME_LATEST};
24
24
 
25
25
enum EXTTIME_MODE {
26
 
  EXTTIME_NONE,EXTTIME_1S,EXTTIME_HIGH1,EXTTIME_HIGH2,EXTTIME_HIGH3
 
26
  EXTTIME_NONE=0,EXTTIME_1S,EXTTIME_HIGH1,EXTTIME_HIGH2,EXTTIME_HIGH3
27
27
};
28
28
 
29
 
enum {NAMES_ORIGINALCASE,NAMES_UPPERCASE,NAMES_LOWERCASE};
 
29
enum {NAMES_ORIGINALCASE=0,NAMES_UPPERCASE,NAMES_LOWERCASE};
30
30
 
31
 
enum MESSAGE_TYPE {MSG_STDOUT,MSG_STDERR,MSG_ERRONLY,MSG_NULL};
 
31
enum MESSAGE_TYPE {MSG_STDOUT=0,MSG_STDERR,MSG_ERRONLY,MSG_NULL};
32
32
 
33
33
enum RECURSE_MODE 
34
34
{
60
60
  int Param2;
61
61
};
62
62
 
 
63
#define MAX_GENERATE_MASK  128
 
64
 
63
65
 
64
66
class RAROptions
65
67
{
73
75
    bool InclAttrSet;
74
76
    uint WinSize;
75
77
    char TempPath[NM];
 
78
    bool ConfigDisabled; // Switch -cfg-.
76
79
    char ExtrPath[NM];
77
80
    wchar ExtrPathW[NM];
78
81
    char CommentFile[NM];
118
121
    bool KeepBroken;
119
122
    bool OpenShared;
120
123
    bool DeleteFiles;
 
124
#ifndef SFX_MODULE
 
125
    bool GenerateArcName;
 
126
    char GenerateMask[MAX_GENERATE_MASK];
 
127
#endif
121
128
    bool SyncFiles;
122
129
    bool ProcessEA;
123
130
    bool SaveStreams;