home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Backup / diavolo_132_reg.lha / API / DiavoloPrefs.h < prev   
Encoding:
C/C++ Source or Header  |  1995-02-23  |  10.6 KB  |  192 lines

  1. /* Diavolo Preferences and Settings Header File
  2.  
  3.    © 1995 Martin Korndörfer
  4.  
  5.    V 1.30
  6. */
  7.  
  8.  
  9. /* The following structures contains all settings for Diavolo. Use them
  10.    with DAPI_ASKPREFS and DAPI_CHANGEPREFS (see below) to change the
  11.    settings of Diavolo.
  12.  
  13.    ATTENTION!
  14.  
  15.    Please be careful WHAT and HOW you change. We can't give any guarantees
  16.    if one of these settings is used irregularly.
  17.  
  18. */
  19.  
  20.  
  21. /* *********************************************************************** */
  22. /* *********************************************************************** */
  23. /*                                                                         */
  24. /* SCSI Settings                                                           */
  25. /*                                                                         */
  26. /* *********************************************************************** */
  27. /* *********************************************************************** */
  28.  
  29. #define MAXCHAR_CATPATH     400
  30. #define MAXCHAR_DESTPATH    400
  31. #define MAXCHAR_DESTDEVICE  31
  32.  
  33. /* SCSI Settings. Be EXTREMLY careful what you're doing here! Best not
  34.    to mess with these settings. */
  35.  
  36. struct SCSIData
  37.     {
  38.         ULONG                   scsi_Magic;                 /* Must be set to SCSI_MAGIC value below */
  39.         ULONG                   scsi_Length;                /* Must be set to sizeof(struct SCSIData) */
  40.  
  41.         BOOL                    scsi_Ok;                    /* Settings valid */
  42.         UBYTE                   scsi_DeviceType;            /* SCSI Device type. Must be 1 = Seq. tape */
  43.         UBYTE                   scsi_Version;               /* SCSI 1 or 2 */
  44.         BOOL                    scsi_Removable;             /* Medium removable */
  45.         char                    scsi_Vendor[9];             /* Device vendor as reported by SCSI_INQUIRY */
  46.         char                    scsi_ProductID[17];         /* Device Product ID */
  47.         char                    scsi_Revision[5];           /* Device SW revision */
  48.         BOOL                    scsi_WriteProtect;          /* Device write protected */
  49.         ULONG                   scsi_MinBlockLength;        /* Reported min. block size */
  50.         ULONG                   scsi_MaxBlockLength;        /* Reported max. block size */
  51.         ULONG                   scsi_MaxTransfer;           /* SCSI buffer size */
  52.         UWORD                   scsi_MemType;               /* SCSI buffer memory type. See below. */
  53.         ULONG                   scsi_BlockSize;             /* Size of one transfer block */
  54.         ULONG                   scsi_MaxBlockSize;          /* Max. size of one transfer block */
  55.         BOOL                    scsi_CngBuffered;           /* 'Buffered' flag can be altered */
  56.         BOOL                    scsi_Buffered;              /* Enable SCSI device buffer */
  57.         BOOL                    scsi_CngFixedBlock;         /* 'Fixed blocks' can be altered */
  58.         BOOL                    scsi_FixedBlock;            /* Use fixed block size */
  59.         BOOL                    scsi_CngPartition;          /* Partition setting not used yet! */
  60.         UWORD                   scsi_CatalogDest;           /* Destination of Catalog. See below.
  61.                                                                Only CATALOG_PATH valid right now */
  62.         ULONG                   scsi_CatalogSize;           /* Not used yet */
  63.         char                    scsi_CatalogPath[MAXCHAR_CATPATH + 2];  /* Path of catalog files */
  64.         BOOL                    scsi_CngSetMark;            /* 'SetMark' can be altered */
  65.         BOOL                    scsi_SetMark;               /* Use Setmarks instead of Filemarks */
  66.         BOOL                    scsi_CngLocate;             /* 'Fast locate' can be altered */
  67.         BOOL                    scsi_Locate;                /* 'Fast locate' enabled */
  68.         BOOL                    scsi_CngSeek;               /* 'Direct seek' can be altered */
  69.         BOOL                    scsi_Seek;                  /* 'Direct seek' enabled */
  70.         BOOL                    scsi_CngOverwrite;          /* 'Update-in-place' can be altered */
  71.         BOOL                    scsi_Overwrite;             /* 'Update-in-place' enabled */
  72.         BOOL                    scsi_CngCompression;        /* 'HW Compression' can be altered */
  73.         BOOL                    scsi_Compression;           /* 'HW Compression' enabled */
  74.         BOOL                    scsi_CngSpeedCtrl;          /* 'HW speed ctrl.' can be altered */
  75.         BOOL                    scsi_SpeedCtrl;             /* 'HW speed ctrl.' enabled */
  76.         UBYTE                   scsi_MaxPartitions;         /* Max. number of partitions supported by device */
  77.         UBYTE                   scsi_NumPartitions;         /* Actual number of partitions on tape */
  78.         UWORD                   scsi_SizePartition;         /* Size of partition 0 */
  79.         ULONG                   scsi_SizeAllPartitions;     /* Size of all partitions */
  80.         ULONG                   scsi_PartitionFlags;        /* Not used, values see below */
  81.         UBYTE                   scsi_Dummy[30];             /* Reserved */
  82.     };
  83.  
  84. #define SCSI_MAGIC          0x27fd82c1                      /* Magic value for SCSIData above */
  85.  
  86. #define SCSI_PF_FIXED       (1 << 0)                        /* Not used yet */
  87. #define SCSI_PF_SDP         (1 << 1)
  88. #define SCSI_PF_IDP         (1 << 2)
  89.  
  90. #define MEMTYPE_CHIP        0                               /* for scsi_Memtype */
  91. #define MEMTYPE_DMA         1
  92. #define MEMTYPE_ANY         2
  93.  
  94. #define CATALOG_PATH        0                               /* for scsi_CatalogDest. Only CATALOG_PATH is */
  95. #define CATALOG_PARTITION   1                               /* valid right now */
  96. #define CATALOG_NONE        2
  97.  
  98.  
  99.  
  100. /* *********************************************************************** */
  101. /* *********************************************************************** */
  102. /*                                                                         */
  103. /* Preferences                                                             */
  104. /*                                                                         */
  105. /* *********************************************************************** */
  106. /* *********************************************************************** */
  107.  
  108.  
  109. /* PrefsSnapshot is used to save window positions and sizes */
  110.  
  111. struct PrefsSnapshot
  112.     {
  113.         WORD                    Left, Top, Width, Height;   /* Set all to -1 to center on screen */
  114.     };
  115.  
  116. struct PrefsFile
  117.     {
  118.         ULONG                   prf_Magic;              /* Must be set to PRF_MAGIC value below */
  119.         ULONG                   prf_Length;             /* Must be set to sizeof(struct PrefsFile) */
  120.  
  121.         BOOL                    prf_UseDrive[4];        /* Which disk drives will be used for operation */
  122.         BOOL                    prf_VerifyWrite;        /* Verify disk writes */
  123.         UBYTE                   prf_BackupMedium;       /* Medium to save to. See values below */
  124.  
  125.         char                    prf_UseDOSFile[MAXCHAR_DESTPATH];
  126.                                                         /* Filename for backup to file */
  127.         char                    prf_UseDeviceName[MAXCHAR_DESTDEVICE];
  128.                                                         /* Devicename for backup to SCSI tape */
  129.         int                     prf_UseDeviceUnit;      /* Deviceunit for backup to SCSI tape */
  130.  
  131.         ULONG                   prf_PufferSizeFac;      /* Global buffer size in 40kB blocks.
  132.                                                            ~0 for max. available */
  133.         BOOL                    prf_NumDispShort;       /* TRUE for 12.34 MB display */
  134.         BYTE                    prf_SenderTaskPri;      /* Taskpri for hd read/write task */
  135.         BYTE                    prf_PackerTaskPri;      /* Taskpri for packing/unpacking */
  136.         BYTE                    prf_ReceiverTaskPri;    /* Taskpri for backup medium task */
  137.  
  138.         BYTE                    prf_PackerNum;          /* Used packer. 0 = NoPacker, 1 = LowEff... */
  139.         char                    prf_Packer[5][15];      /* Packer for each level (e.g. NUKE.5) */
  140.         BOOL                    prf_AskPw;              /* TRUE to ask backup title and password */
  141.         BOOL                    prf_CheckDOS;           /* Check disks for DOS format */
  142.         BOOL                    prf_CheckBack;          /* Check disks for Diavolo format */
  143.  
  144.         BYTE                    prf_OverwrtMode;        /* Action if file exists while restore.
  145.                                                            See below for details. */
  146.  
  147.         BOOL                    prf_ClearArchiveFlags;  /* TRUE to *SET* archive flags after backup
  148.                                                            (sorry, a somewhat mistaken name here :) */
  149.  
  150.         BOOL                    prf_UseDirStructure;    /* TRUE to restore dir. structure */
  151.  
  152.         struct  SCSIData        prf_SCSI;               /* SCSI Prefs. See below */
  153.  
  154.         BOOL                    prf_UseExAll;           /* Use ExAll to scan data */
  155.         BOOL                    prf_FollowLinks;        /* FALSE to save HLed directories */
  156.         BOOL                    prf_IgnoreHLinks;       /* FALSE to save HLed files */
  157.         BOOL                    prf_RecursionCheck;     /* Unused, set to TRUE */
  158.  
  159.         BOOL                    prf_DeviceVerify;       /* Automatic verify SCSI tapes after backup */
  160.  
  161.         struct  PrefsSnapshot   prf_MenuSnapshot;       /* Window position and sizes */
  162.         struct  PrefsSnapshot   prf_DeviceSnapshot;     /* Use -1 to center window */
  163.         struct  PrefsSnapshot   prf_SelectSnapshot;
  164.         struct  PrefsSnapshot   prf_BackupSnapshot;
  165.         struct  PrefsSnapshot   prf_RestoreSnapshot;
  166.         struct  PrefsSnapshot   prf_VerifySnapshot;
  167.         struct  PrefsSnapshot   prf_ScanSnapshot;
  168.         struct  PrefsSnapshot   prf_GlobOptSnapshot;
  169.         struct  PrefsSnapshot   prf_BackOptSnapshot;
  170.         struct  PrefsSnapshot   prf_RestOptSnapshot;
  171.         struct  PrefsSnapshot   prf_SCSIOptSnapshot;
  172.         struct  PrefsSnapshot   prf_TapeIndexSnapshot;
  173.         struct  PrefsSnapshot   prf_PasswordSnapshot;
  174.         struct  PrefsSnapshot   prf_FilterSnapshot;
  175.     };
  176.  
  177. #define PRF_MAGIC       0xa687b26c                          /* Magic value for PrefsFile above */
  178.  
  179.  
  180. #define MEDIUM_DOS              1                           /* prf_BackupMedium */
  181. #define MEDIUM_DISK             0
  182. #define MEDIUM_DEVICE           2
  183.  
  184. #define OVERWRT_ASK             0                           /* prf_OverwrtMode */
  185. #define OVERWRT_NOT             1
  186. #define OVERWRT_ALWAYS          2
  187. #define OVERWRT_OLDER           3
  188. #define OVERWRT_RENOLD          4
  189. #define OVERWRT_RENNEW          5
  190.  
  191.  
  192.