Rxgconst.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

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