IdZLibConst.pas 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {*******************************************************}
  2. { }
  3. { Borland Delphi Visual Component Library }
  4. { }
  5. { Copyright (c) 1997-1999 Borland Software Corporation }
  6. { }
  7. {*******************************************************}
  8. unit IdZLibConst;
  9. interface
  10. {$I IdCompilerDefines.inc}
  11. {$UNDEF STATICLOAD_ZLIB}
  12. {$IFNDEF FPC}
  13. {$IFDEF WINDOWS}
  14. {$IFNDEF BCB5_DUMMY_BUILD}
  15. {$DEFINE STATICLOAD_ZLIB}
  16. {$ENDIF}
  17. {$ENDIF}
  18. {$ENDIF}
  19. {$IFNDEF STATICLOAD_ZLIB}
  20. uses
  21. IdException;
  22. {$ENDIF}
  23. resourcestring
  24. sTargetBufferTooSmall = 'ZLib error: target buffer may be too small';
  25. sInvalidStreamOp = 'Invalid stream operation';
  26. sZLibError = 'ZLib Error (%d)';
  27. {$IFNDEF STATICLOAD_ZLIB}
  28. RSZLibCallError = 'Error on call to ZLib library function %s';
  29. {$ENDIF}
  30. implementation
  31. end.