home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / zkuste / delphi / kompon / d56 / CABD.ZIP / Code / CabSTConsts.pas < prev    next >
Pascal/Delphi Source File  |  2002-08-27  |  2KB  |  49 lines

  1. unit CabSTConsts;
  2.  
  3. (*
  4.  *  Copyright (c) Ravil Batyrshin, 2001-2002
  5.  *  All Rights Reserved
  6.  *  Version 1.20
  7.  *  Aravil Software
  8.  *  web site: aravilsoft.tripod.com
  9.  *  e-mail: aravilsoft@bigfoot.com, wizeman@mail.ru
  10.  *)
  11.  
  12. interface
  13.  
  14. resourcestring
  15.     SFciErrNone = 'No error';
  16.     SFciErrOpenSrc = 'Failure opening file to be stored in cabinet';
  17.     SFciErrReadSrc = 'Failure reading file to be stored in cabinet';
  18.     SFciErrAllocFail = 'Out of memory in FCI';
  19.     SFciErrTempFile = 'Could not create a temporary file';
  20.     SFciErrBadComprType = 'Unknown compression type';
  21.     SFciErrCabFile = 'Could not create cabinet file';
  22.     SFciErrUserAbort = 'Client requested abort';
  23.     SFciErrMciFail = 'Failure compressing data';
  24.     SFciErrUnknown = 'FCI error';
  25.  
  26.     SFdiErrNone = 'No error';
  27.     SFdiErrCabinetNotFound = 'Cabinet not found';
  28.     SFdiErrNotACabinet = 'Cabinet file does not have the correct format';
  29.     SFdiErrUnknownCabinetVersion = 'Cabinet file has an unknown version number';
  30.     SFdiErrCorruptCabinet = 'Cabinet file is corrupt';
  31.     SFdiErrAllocFail = 'Could not allocate enough memory';
  32.     SFdiErrBadComprType = 'Unknown compression type in a cabinet folder';
  33.     SFdiErrMdiFail = 'Failure decompressing data from a cabinet file';
  34.     SFdiErrTargetFile = 'Failure writing to target file';
  35.     SFdiErrReserveMismatch = 'Cabinets in a set do not have the same RESERVE sizes';
  36.     SFdiErrWrongCabinet = 'Cabinet returned on fdintNEXT_CABINET is incorrect';
  37.     SFdiErrUserAbort = 'FDI aborted';
  38.     SFdiErrUnknown = 'FDI error';
  39.  
  40.     SCabErrSetPosition = 'Failure setting file stream position';
  41.  
  42. const
  43.     SDiskLabelTemplateDef = 'Disk*';
  44.  
  45. implementation
  46.  
  47. end.
  48.  
  49.