home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d6 / RX275D6.ZIP / Units / RXGCONST.PAS < prev    next >
Pascal/Delphi Source File  |  1999-10-12  |  1KB  |  46 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {         Delphi VCL Extensions (RX)                    }
  4. {                                                       }
  5. {         Copyright (c) 1997 Master-Bank                }
  6. {                                                       }
  7. {*******************************************************}
  8.  
  9. unit RxGConst;
  10.  
  11. { RX graphic support constants }
  12. {
  13.   Reserved diapasone
  14.   from MaxExtStrID - 200
  15.   to   MaxExtStrID - 230
  16. }
  17.  
  18. interface
  19.  
  20. const
  21. { The minimal VCL's used string ID is 61440. The custom IDs must be
  22.   less that above. }
  23.   MaxExtStrID = 61300;
  24.  
  25. { RxGIF }
  26.  
  27. const
  28.   SGIFImage            = MaxExtStrID - 200;
  29.   SChangeGIFSize       = MaxExtStrID - 201;
  30.   SNoGIFData           = MaxExtStrID - 202;
  31.   SUnrecognizedGIFExt  = MaxExtStrID - 203;
  32.   SWrongGIFColors      = MaxExtStrID - 204;
  33.   SBadGIFCodeSize      = MaxExtStrID - 205;
  34.   SGIFDecodeError      = MaxExtStrID - 206;
  35.   SGIFEncodeError      = MaxExtStrID - 207;
  36.   SGIFVersion          = MaxExtStrID - 208;
  37.  
  38. implementation
  39.  
  40. {$IFDEF WIN32}
  41.  {$R *.R32}
  42. {$ELSE}
  43.  {$R *.R16}
  44. {$ENDIF}
  45.  
  46. end.