2
0

source.bmx 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ' Copyright (c) 2022 Bruce A Henderson
  2. '
  3. ' This software is provided 'as-is', without any express or implied
  4. ' warranty. In no event will the authors be held liable for any damages
  5. ' arising from the use of this software.
  6. '
  7. ' Permission is granted to anyone to use this software for any purpose,
  8. ' including commercial applications, and to alter it and redistribute it
  9. ' freely, subject to the following restrictions:
  10. '
  11. ' 1. The origin of this software must not be misrepresented; you must not
  12. ' claim that you wrote the original software. If you use this software
  13. ' in a product, an acknowledgment in the product documentation would be
  14. ' appreciated but is not required.
  15. '
  16. ' 2. Altered source versions must be plainly marked as such, and must not be
  17. ' misrepresented as being the original software.
  18. '
  19. ' 3. This notice may not be removed or altered from any source
  20. ' distribution.
  21. '
  22. SuperStrict
  23. Import "config/*.h"
  24. Import "tiff/libtiff/*.h"
  25. Import "../jpg.mod/libjpeg/*.h"
  26. Import "../../archive.mod/zlib.mod/zlib/*.h"
  27. Import "glue.c"
  28. Import "tiff/libtiff/tif_aux.c"
  29. Import "tiff/libtiff/tif_close.c"
  30. Import "tiff/libtiff/tif_codec.c"
  31. Import "tiff/libtiff/tif_color.c"
  32. Import "tiff/libtiff/tif_compress.c"
  33. Import "tiff/libtiff/tif_dir.c"
  34. Import "tiff/libtiff/tif_dirinfo.c"
  35. Import "tiff/libtiff/tif_dirread.c"
  36. Import "tiff/libtiff/tif_dirwrite.c"
  37. Import "tiff/libtiff/tif_dumpmode.c"
  38. Import "tiff/libtiff/tif_error.c"
  39. Import "tiff/libtiff/tif_extension.c"
  40. Import "tiff/libtiff/tif_fax3.c"
  41. Import "tiff/libtiff/tif_fax3sm.c"
  42. Import "tiff/libtiff/tif_flush.c"
  43. Import "tiff/libtiff/tif_getimage.c"
  44. Import "tiff/libtiff/tif_jpeg.c"
  45. Import "tiff/libtiff/tif_jpeg_12.c"
  46. Import "tiff/libtiff/tif_ojpeg.c"
  47. Import "tiff/libtiff/tif_luv.c"
  48. Import "tiff/libtiff/tif_lzma.c"
  49. Import "tiff/libtiff/tif_lzw.c"
  50. Import "tiff/libtiff/tif_next.c"
  51. Import "tiff/libtiff/tif_open.c"
  52. Import "tiff/libtiff/tif_packbits.c"
  53. Import "tiff/libtiff/tif_pixarlog.c"
  54. Import "tiff/libtiff/tif_predict.c"
  55. Import "tiff/libtiff/tif_print.c"
  56. Import "tiff/libtiff/tif_read.c"
  57. Import "tiff/libtiff/tif_strip.c"
  58. Import "tiff/libtiff/tif_swab.c"
  59. Import "tiff/libtiff/tif_thunder.c"
  60. Import "tiff/libtiff/tif_tile.c"
  61. Import "tiff/libtiff/tif_version.c"
  62. Import "tiff/libtiff/tif_warning.c"
  63. Import "tiff/libtiff/tif_write.c"
  64. Import "tiff/libtiff/tif_zip.c"