source.bmx 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. ' Copyright (c) 2023 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. ' 2. Altered source versions must be plainly marked as such, and must not be
  16. ' misrepresented as being the original software.
  17. ' 3. This notice may not be removed or altered from any source distribution.
  18. '
  19. SuperStrict
  20. Import "libharu/include/*.h"
  21. Import "../../archive.mod/zlib.mod/zlib/*.h"
  22. Import "libharu/src/hpdf_annotation.c"
  23. Import "libharu/src/hpdf_array.c"
  24. Import "libharu/src/hpdf_binary.c"
  25. Import "libharu/src/hpdf_boolean.c"
  26. Import "libharu/src/hpdf_catalog.c"
  27. Import "libharu/src/hpdf_destination.c"
  28. Import "libharu/src/hpdf_dict.c"
  29. Import "libharu/src/hpdf_direct.c"
  30. Import "libharu/src/hpdf_doc_png.c"
  31. Import "libharu/src/hpdf_doc.c"
  32. Import "libharu/src/hpdf_encoder_cns.c"
  33. Import "libharu/src/hpdf_encoder_cnt.c"
  34. Import "libharu/src/hpdf_encoder_jp.c"
  35. Import "libharu/src/hpdf_encoder_kr.c"
  36. Import "libharu/src/hpdf_encoder.c"
  37. Import "libharu/src/hpdf_encrypt.c"
  38. Import "libharu/src/hpdf_encryptdict.c"
  39. Import "libharu/src/hpdf_error.c"
  40. Import "libharu/src/hpdf_ext_gstate.c"
  41. Import "libharu/src/hpdf_font_cid.c"
  42. Import "libharu/src/hpdf_font_tt.c"
  43. Import "libharu/src/hpdf_font_type1.c"
  44. Import "libharu/src/hpdf_font.c"
  45. Import "libharu/src/hpdf_fontdef_base14.c"
  46. Import "libharu/src/hpdf_fontdef_cid.c"
  47. Import "libharu/src/hpdf_fontdef_cns.c"
  48. Import "libharu/src/hpdf_fontdef_cnt.c"
  49. Import "libharu/src/hpdf_fontdef_jp.c"
  50. Import "libharu/src/hpdf_fontdef_kr.c"
  51. Import "libharu/src/hpdf_fontdef_tt.c"
  52. Import "libharu/src/hpdf_fontdef_type1.c"
  53. Import "libharu/src/hpdf_fontdef.c"
  54. Import "libharu/src/hpdf_gstate.c"
  55. Import "libharu/src/hpdf_image_ccitt.c"
  56. Import "libharu/src/hpdf_image_png.c"
  57. Import "libharu/src/hpdf_image.c"
  58. Import "libharu/src/hpdf_info.c"
  59. Import "libharu/src/hpdf_list.c"
  60. Import "libharu/src/hpdf_mmgr.c"
  61. Import "libharu/src/hpdf_name.c"
  62. Import "libharu/src/hpdf_namedict.c"
  63. Import "libharu/src/hpdf_null.c"
  64. Import "libharu/src/hpdf_number.c"
  65. Import "libharu/src/hpdf_objects.c"
  66. Import "libharu/src/hpdf_outline.c"
  67. Import "libharu/src/hpdf_page_label.c"
  68. Import "libharu/src/hpdf_page_operator.c"
  69. Import "libharu/src/hpdf_pages.c"
  70. Import "libharu/src/hpdf_real.c"
  71. Import "libharu/src/hpdf_shading.c"
  72. Import "libharu/src/hpdf_streams.c"
  73. Import "libharu/src/hpdf_string.c"
  74. Import "libharu/src/hpdf_u3d.c"
  75. Import "libharu/src/hpdf_utils.c"
  76. Import "libharu/src/hpdf_xref.c"
  77. Import "libharu/src/hpdf_pdfa.c"
  78. Import "libharu/src/hpdf_3dmeasure.c"
  79. Import "libharu/src/hpdf_exdata.c"
  80. Import "libharu/src/hpdf_encoder_utf.c"
  81. Import "glue.c"