OverbyteIcsZlib.inc 670 B

12345678910111213141516171819202122232425262728
  1. { Interface with zlib dll
  2. file : xZlib.inc
  3. date : 18/02/2005
  4. author : Xavier Le Bris
  5. e-mail : xavier.lebris@free.fr
  6. see xZlibDll.pas
  7. }
  8. {$DEFINE USE_ZLIB_OBJ}
  9. {$IFNDEF USE_ZLIB_OBJ}
  10. const
  11. {$IfDef Def_ZLib1Dll}
  12. ZLibDllName = 'ZLIB1.DLL'; // for official dll version 1.2.2 with cdecl
  13. ZLibDllNameBis = 'ZLIBXLB.DLL';
  14. ZLibDllNameTer = 'ZLIB.DLL';
  15. {$Else}
  16. ZLibDllName = 'ZLIBXLB.DLL'; // for unofficial dll version 1.2.2 with stdcall and assembler (http://www.winimage.com/zLibDll/unzip.html)
  17. ZLibDllNameBis = 'ZLIB.DLL'; // ZLIBXLB is the same as ZLIBWAPI
  18. ZLibDllNameTer = 'ZLIB1.DLL';
  19. {$Endif}
  20. {$ENDIF}