!Esenthel Changes.txt 961 B

123456789101112131415161718192021222324252627282930
  1. tif_zip.c:
  2. #include "zlib.h"
  3. replaced with:
  4. #include "../../Zlib/zlib.h" // ESENTHEL CHANGED
  5. tif_read.c:
  6. #if SIZEOF_VOIDP == 8 || SIZEOF_SIZE_T == 8
  7. replaced with:
  8. #if X64 // SIZEOF_VOIDP == 8 || SIZEOF_SIZE_T == 8 ESENTHEL CHANGED
  9. tif_win32.c:
  10. // this is to disable calls to 'MessageBoxA' unavailable on UWP
  11. TIFFErrorHandler _TIFFwarningHandler;// = Win32WarningHandler; ESENTHEL CHANGED
  12. TIFFErrorHandler _TIFFerrorHandler;// = Win32ErrorHandler; ESENTHEL CHANGED
  13. // this is to disable unsupported UWP file operations
  14. add right at the start (after "#include <windows.h>" and before "_tiffReadProc")
  15. #if 0 // ESENTHEL CHANGED
  16. add after "TIFFOpenW" and "#endif /* ndef _WIN32_WCE */"
  17. #endif // ESENTHEL CHANGED
  18. tif_config.h:
  19. it was created by modifying the "tif_config.vc.h" file to make it universal for all platforms
  20. tiffconf.h:
  21. it was created by modifying the "tiffconf.vc.h" file to make it universal for all platforms
  22. and with:
  23. #define ZIP_SUPPORT 1