| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {*******************************************************}
- { }
- { Borland Delphi Visual Component Library }
- { }
- { Copyright (c) 1997-1999 Borland Software Corporation }
- { }
- {*******************************************************}
- unit IdZLibConst;
- interface
- {$I IdCompilerDefines.inc}
- {$UNDEF STATICLOAD_ZLIB}
- {$IFNDEF FPC}
- {$IFDEF WINDOWS}
- {$IFNDEF BCB5_DUMMY_BUILD}
- {$DEFINE STATICLOAD_ZLIB}
- {$ENDIF}
- {$ENDIF}
- {$ENDIF}
- {$IFNDEF STATICLOAD_ZLIB}
- uses
- IdException;
- {$ENDIF}
- resourcestring
- sTargetBufferTooSmall = 'ZLib error: target buffer may be too small';
- sInvalidStreamOp = 'Invalid stream operation';
- sZLibError = 'ZLib Error (%d)';
- {$IFNDEF STATICLOAD_ZLIB}
- RSZLibCallError = 'Error on call to ZLib library function %s';
- {$ENDIF}
- implementation
- end.
-
|