├── .gitattributes ├── .gitignore ├── Content ├── BPs │ └── BP_Template_LibHaru.uasset └── Widgets │ └── UI_LibHaru.uasset ├── FF_LibHaru.uplugin ├── LICENSE ├── README.md ├── Resources ├── Fonts │ └── Roboto │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf ├── Icon128.png └── Models │ └── Teapot.u3d └── Source └── FF_LibHaru ├── FF_LibHaru.Build.cs ├── FF_LibHaru_UPL_Android.xml ├── Private ├── FF_LibHaru.cpp └── FF_LibHaruBPLibrary.cpp ├── Public ├── FF_LibHaru.h └── FF_LibHaruBPLibrary.h └── ThirdParty └── libharu ├── Android ├── include │ ├── hpdf.h │ ├── hpdf_3dmeasure.h │ ├── hpdf_annotation.h │ ├── hpdf_catalog.h │ ├── hpdf_conf.h │ ├── hpdf_config.h │ ├── hpdf_consts.h │ ├── hpdf_destination.h │ ├── hpdf_doc.h │ ├── hpdf_encoder.h │ ├── hpdf_encrypt.h │ ├── hpdf_encryptdict.h │ ├── hpdf_error.h │ ├── hpdf_exdata.h │ ├── hpdf_ext_gstate.h │ ├── hpdf_font.h │ ├── hpdf_fontdef.h │ ├── hpdf_gstate.h │ ├── hpdf_image.h │ ├── hpdf_info.h │ ├── hpdf_list.h │ ├── hpdf_mmgr.h │ ├── hpdf_namedict.h │ ├── hpdf_objects.h │ ├── hpdf_outline.h │ ├── hpdf_page_label.h │ ├── hpdf_pages.h │ ├── hpdf_pdfa.h │ ├── hpdf_streams.h │ ├── hpdf_types.h │ ├── hpdf_u3d.h │ ├── hpdf_utils.h │ └── hpdf_version.h └── lib │ └── arm64-v8a │ └── libhpdf.so └── Windows ├── include ├── hpdf.h ├── hpdf_3dmeasure.h ├── hpdf_annotation.h ├── hpdf_catalog.h ├── hpdf_conf.h ├── hpdf_config.h ├── hpdf_consts.h ├── hpdf_destination.h ├── hpdf_doc.h ├── hpdf_encoder.h ├── hpdf_encrypt.h ├── hpdf_encryptdict.h ├── hpdf_error.h ├── hpdf_exdata.h ├── hpdf_ext_gstate.h ├── hpdf_font.h ├── hpdf_fontdef.h ├── hpdf_gstate.h ├── hpdf_image.h ├── hpdf_info.h ├── hpdf_list.h ├── hpdf_mmgr.h ├── hpdf_namedict.h ├── hpdf_objects.h ├── hpdf_outline.h ├── hpdf_page_label.h ├── hpdf_pages.h ├── hpdf_pdfa.h ├── hpdf_streams.h ├── hpdf_types.h ├── hpdf_u3d.h ├── hpdf_utils.h └── hpdf_version.h └── lib └── hpdf.lib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/BPs/BP_Template_LibHaru.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Content/BPs/BP_Template_LibHaru.uasset -------------------------------------------------------------------------------- /Content/Widgets/UI_LibHaru.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Content/Widgets/UI_LibHaru.uasset -------------------------------------------------------------------------------- /FF_LibHaru.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/FF_LibHaru.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Models/Teapot.u3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Resources/Models/Teapot.u3d -------------------------------------------------------------------------------- /Source/FF_LibHaru/FF_LibHaru.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/FF_LibHaru.Build.cs -------------------------------------------------------------------------------- /Source/FF_LibHaru/FF_LibHaru_UPL_Android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/FF_LibHaru_UPL_Android.xml -------------------------------------------------------------------------------- /Source/FF_LibHaru/Private/FF_LibHaru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/Private/FF_LibHaru.cpp -------------------------------------------------------------------------------- /Source/FF_LibHaru/Private/FF_LibHaruBPLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/Private/FF_LibHaruBPLibrary.cpp -------------------------------------------------------------------------------- /Source/FF_LibHaru/Public/FF_LibHaru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/Public/FF_LibHaru.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/Public/FF_LibHaruBPLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/Public/FF_LibHaruBPLibrary.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_3dmeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_3dmeasure.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_annotation.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_catalog.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_conf.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_config.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_consts.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_destination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_destination.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_doc.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_encoder.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_encrypt.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_encryptdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_encryptdict.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_error.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_exdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_exdata.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_ext_gstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_ext_gstate.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_font.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_fontdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_fontdef.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_gstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_gstate.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_image.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_info.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_list.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_mmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_mmgr.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_namedict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_namedict.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_objects.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_outline.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_page_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_page_label.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_pages.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_pdfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_pdfa.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_streams.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_types.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_u3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_u3d.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_utils.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/include/hpdf_version.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Android/lib/arm64-v8a/libhpdf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Android/lib/arm64-v8a/libhpdf.so -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_3dmeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_3dmeasure.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_annotation.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_catalog.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_conf.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_config.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_consts.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_destination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_destination.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_doc.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_encoder.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_encrypt.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_encryptdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_encryptdict.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_error.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_exdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_exdata.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_ext_gstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_ext_gstate.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_font.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_fontdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_fontdef.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_gstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_gstate.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_image.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_info.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_list.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_mmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_mmgr.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_namedict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_namedict.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_objects.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_outline.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_page_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_page_label.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_pages.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_pdfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_pdfa.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_streams.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_types.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_u3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_u3d.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_utils.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/include/hpdf_version.h -------------------------------------------------------------------------------- /Source/FF_LibHaru/ThirdParty/libharu/Windows/lib/hpdf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frozen-Archive/FF_LibHaru/HEAD/Source/FF_LibHaru/ThirdParty/libharu/Windows/lib/hpdf.lib --------------------------------------------------------------------------------