├── .github ├── build_macos.sh └── workflows │ ├── macos.yml │ ├── ubuntu.yml │ └── win64.yml ├── .gitignore ├── .gitmodules ├── .vs ├── CMake Overview ├── ProjectSettings.json ├── cmake.db └── tasks.vs.json ├── 3rdparty ├── drmingw-0.9.3-win64 │ ├── bin │ │ ├── addr2line.exe │ │ ├── catchsegv.exe │ │ ├── dbgcore.dll │ │ ├── dbghelp.dll │ │ ├── drmingw.exe │ │ ├── exchndl.dll │ │ ├── mgwhelp.dll │ │ ├── symsrv.dll │ │ └── symsrv.yes │ ├── doc │ │ ├── LICENSE-libdwarf.txt │ │ ├── LICENSE-zlib.txt │ │ ├── LICENSE.txt │ │ └── README.md │ ├── include │ │ └── exchndl.h │ ├── lib │ │ ├── libexchndl.a │ │ └── libmgwhelp.a │ └── sample │ │ ├── Makefile │ │ └── sample.cpp └── json │ ├── .clang-format │ ├── .clang-tidy │ ├── .github │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug.yaml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── config.yml │ ├── external_ci │ │ ├── .drone.yml │ │ └── appveyor.yml │ ├── stale.yml │ └── workflows │ │ ├── codeql-analysis.yml │ │ ├── macos.yml │ │ ├── ubuntu.yml │ │ └── windows.yml │ ├── .gitignore │ ├── CITATION.cff │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── LICENSE.MIT │ ├── Makefile │ ├── README.md │ ├── cmake │ ├── ci.cmake │ ├── config.cmake.in │ ├── download_test_data.cmake │ ├── nlohmann_jsonConfigVersion.cmake.in │ ├── pkg-config.pc.in │ └── test.cmake │ ├── docs │ ├── Makefile │ ├── README.md │ ├── avatars.png │ ├── docset │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── README.md │ │ ├── docSet.sql │ │ ├── docset.json │ │ ├── icon.png │ │ └── icon@2x.png │ ├── examples │ │ ├── README.cpp │ │ ├── README.output │ │ ├── accept__string.cpp │ │ ├── accept__string.output │ │ ├── array.cpp │ │ ├── array.output │ │ ├── array_t.cpp │ │ ├── array_t.output │ │ ├── at__object_t_key_type.cpp │ │ ├── at__object_t_key_type.output │ │ ├── at__object_t_key_type_const.cpp │ │ ├── at__object_t_key_type_const.output │ │ ├── at__size_type.cpp │ │ ├── at__size_type.output │ │ ├── at__size_type_const.cpp │ │ ├── at__size_type_const.output │ │ ├── at_json_pointer.cpp │ │ ├── at_json_pointer.output │ │ ├── at_json_pointer_const.cpp │ │ ├── at_json_pointer_const.output │ │ ├── back.cpp │ │ ├── back.output │ │ ├── basic_json__CompatibleType.cpp │ │ ├── basic_json__CompatibleType.output │ │ ├── basic_json__InputIt_InputIt.cpp │ │ ├── basic_json__InputIt_InputIt.output │ │ ├── basic_json__basic_json.cpp │ │ ├── basic_json__basic_json.output │ │ ├── basic_json__copyassignment.cpp │ │ ├── basic_json__copyassignment.output │ │ ├── basic_json__list_init_t.cpp │ │ ├── basic_json__list_init_t.output │ │ ├── basic_json__moveconstructor.cpp │ │ ├── basic_json__moveconstructor.output │ │ ├── basic_json__nullptr_t.cpp │ │ ├── basic_json__nullptr_t.output │ │ ├── basic_json__size_type_basic_json.cpp │ │ ├── basic_json__size_type_basic_json.output │ │ ├── basic_json__value.cpp │ │ ├── basic_json__value.output │ │ ├── basic_json__value_ptr.cpp │ │ ├── basic_json__value_ptr.output │ │ ├── basic_json__value_t.cpp │ │ ├── basic_json__value_t.output │ │ ├── begin.cpp │ │ ├── begin.output │ │ ├── binary.cpp │ │ ├── binary.output │ │ ├── binary_t.cpp │ │ ├── binary_t.output │ │ ├── boolean_t.cpp │ │ ├── boolean_t.output │ │ ├── byte_container_with_subtype__byte_container_with_subtype.cpp │ │ ├── byte_container_with_subtype__byte_container_with_subtype.output │ │ ├── byte_container_with_subtype__clear_subtype.cpp │ │ ├── byte_container_with_subtype__clear_subtype.output │ │ ├── byte_container_with_subtype__has_subtype.cpp │ │ ├── byte_container_with_subtype__has_subtype.output │ │ ├── byte_container_with_subtype__set_subtype.cpp │ │ ├── byte_container_with_subtype__set_subtype.output │ │ ├── byte_container_with_subtype__subtype.cpp │ │ ├── byte_container_with_subtype__subtype.output │ │ ├── cbegin.cpp │ │ ├── cbegin.output │ │ ├── cbor_tag_handler_t.cpp │ │ ├── cbor_tag_handler_t.output │ │ ├── cend.cpp │ │ ├── cend.output │ │ ├── clear.cpp │ │ ├── clear.output │ │ ├── contains.cpp │ │ ├── contains.output │ │ ├── contains_json_pointer.cpp │ │ ├── contains_json_pointer.output │ │ ├── count.cpp │ │ ├── count.output │ │ ├── crbegin.cpp │ │ ├── crbegin.output │ │ ├── crend.cpp │ │ ├── crend.output │ │ ├── default_object_comparator_t.cpp │ │ ├── default_object_comparator_t.output │ │ ├── diagnostics_extended.cpp │ │ ├── diagnostics_extended.output │ │ ├── diagnostics_standard.cpp │ │ ├── diagnostics_standard.output │ │ ├── diff.cpp │ │ ├── diff.output │ │ ├── dump.cpp │ │ ├── dump.output │ │ ├── emplace.cpp │ │ ├── emplace.output │ │ ├── emplace_back.cpp │ │ ├── emplace_back.output │ │ ├── empty.cpp │ │ ├── empty.output │ │ ├── end.cpp │ │ ├── end.output │ │ ├── erase__IteratorType.cpp │ │ ├── erase__IteratorType.output │ │ ├── erase__IteratorType_IteratorType.cpp │ │ ├── erase__IteratorType_IteratorType.output │ │ ├── erase__key_type.cpp │ │ ├── erase__key_type.output │ │ ├── erase__size_type.cpp │ │ ├── erase__size_type.output │ │ ├── error_handler_t.cpp │ │ ├── error_handler_t.output │ │ ├── exception.cpp │ │ ├── exception.output │ │ ├── find__key_type.cpp │ │ ├── find__key_type.output │ │ ├── flatten.cpp │ │ ├── flatten.output │ │ ├── from_bjdata.cpp │ │ ├── from_bjdata.output │ │ ├── from_bson.cpp │ │ ├── from_bson.output │ │ ├── from_cbor.cpp │ │ ├── from_cbor.output │ │ ├── from_msgpack.cpp │ │ ├── from_msgpack.output │ │ ├── from_ubjson.cpp │ │ ├── from_ubjson.output │ │ ├── front.cpp │ │ ├── front.output │ │ ├── get__PointerType.cpp │ │ ├── get__PointerType.output │ │ ├── get__ValueType_const.cpp │ │ ├── get__ValueType_const.output │ │ ├── get_allocator.cpp │ │ ├── get_allocator.output │ │ ├── get_binary.cpp │ │ ├── get_binary.output │ │ ├── get_ptr.cpp │ │ ├── get_ptr.output │ │ ├── get_ref.cpp │ │ ├── get_ref.output │ │ ├── get_to.cpp │ │ ├── get_to.output │ │ ├── insert.cpp │ │ ├── insert.output │ │ ├── insert__count.cpp │ │ ├── insert__count.output │ │ ├── insert__ilist.cpp │ │ ├── insert__ilist.output │ │ ├── insert__range.cpp │ │ ├── insert__range.output │ │ ├── insert__range_object.cpp │ │ ├── insert__range_object.output │ │ ├── invalid_iterator.cpp │ │ ├── invalid_iterator.output │ │ ├── is_array.cpp │ │ ├── is_array.output │ │ ├── is_binary.cpp │ │ ├── is_binary.output │ │ ├── is_boolean.cpp │ │ ├── is_boolean.output │ │ ├── is_discarded.cpp │ │ ├── is_discarded.output │ │ ├── is_null.cpp │ │ ├── is_null.output │ │ ├── is_number.cpp │ │ ├── is_number.output │ │ ├── is_number_float.cpp │ │ ├── is_number_float.output │ │ ├── is_number_integer.cpp │ │ ├── is_number_integer.output │ │ ├── is_number_unsigned.cpp │ │ ├── is_number_unsigned.output │ │ ├── is_object.cpp │ │ ├── is_object.output │ │ ├── is_primitive.cpp │ │ ├── is_primitive.output │ │ ├── is_string.cpp │ │ ├── is_string.output │ │ ├── is_structured.cpp │ │ ├── is_structured.output │ │ ├── items.cpp │ │ ├── items.output │ │ ├── json_lines.cpp │ │ ├── json_lines.output │ │ ├── json_pointer.cpp │ │ ├── json_pointer.output │ │ ├── json_pointer__back.cpp │ │ ├── json_pointer__back.output │ │ ├── json_pointer__empty.cpp │ │ ├── json_pointer__empty.output │ │ ├── json_pointer__operator_add.cpp │ │ ├── json_pointer__operator_add.output │ │ ├── json_pointer__operator_add_binary.cpp │ │ ├── json_pointer__operator_add_binary.output │ │ ├── json_pointer__operator_string.cpp │ │ ├── json_pointer__operator_string.output │ │ ├── json_pointer__parent_pointer.cpp │ │ ├── json_pointer__parent_pointer.output │ │ ├── json_pointer__pop_back.cpp │ │ ├── json_pointer__pop_back.output │ │ ├── json_pointer__push_back.cpp │ │ ├── json_pointer__push_back.output │ │ ├── json_pointer__string_t.cpp │ │ ├── json_pointer__string_t.output │ │ ├── json_pointer__to_string.cpp │ │ ├── json_pointer__to_string.output │ │ ├── max_size.cpp │ │ ├── max_size.output │ │ ├── merge_patch.cpp │ │ ├── merge_patch.output │ │ ├── meta.cpp │ │ ├── meta.output │ │ ├── nlohmann_define_type_intrusive_explicit.cpp │ │ ├── nlohmann_define_type_intrusive_explicit.output │ │ ├── nlohmann_define_type_intrusive_macro.cpp │ │ ├── nlohmann_define_type_intrusive_macro.output │ │ ├── nlohmann_define_type_intrusive_with_default_explicit.cpp │ │ ├── nlohmann_define_type_intrusive_with_default_explicit.output │ │ ├── nlohmann_define_type_intrusive_with_default_macro.cpp │ │ ├── nlohmann_define_type_intrusive_with_default_macro.output │ │ ├── nlohmann_define_type_non_intrusive_explicit.cpp │ │ ├── nlohmann_define_type_non_intrusive_explicit.output │ │ ├── nlohmann_define_type_non_intrusive_macro.cpp │ │ ├── nlohmann_define_type_non_intrusive_macro.output │ │ ├── nlohmann_define_type_non_intrusive_with_default_explicit.cpp │ │ ├── nlohmann_define_type_non_intrusive_with_default_explicit.output │ │ ├── nlohmann_define_type_non_intrusive_with_default_macro.cpp │ │ ├── nlohmann_define_type_non_intrusive_with_default_macro.output │ │ ├── nlohmann_json_serialize_enum.cpp │ │ ├── nlohmann_json_serialize_enum.output │ │ ├── nlohmann_json_serialize_enum_2.cpp │ │ ├── nlohmann_json_serialize_enum_2.output │ │ ├── nlohmann_json_version.cpp │ │ ├── nlohmann_json_version.output │ │ ├── number_float_t.cpp │ │ ├── number_float_t.output │ │ ├── number_integer_t.cpp │ │ ├── number_integer_t.output │ │ ├── number_unsigned_t.cpp │ │ ├── number_unsigned_t.output │ │ ├── object.cpp │ │ ├── object.output │ │ ├── object_comparator_t.cpp │ │ ├── object_comparator_t.output │ │ ├── object_t.cpp │ │ ├── object_t.output │ │ ├── operator__ValueType.cpp │ │ ├── operator__ValueType.output │ │ ├── operator__equal.cpp │ │ ├── operator__equal.output │ │ ├── operator__equal__nullptr_t.cpp │ │ ├── operator__equal__nullptr_t.output │ │ ├── operator__greater.cpp │ │ ├── operator__greater.output │ │ ├── operator__greaterequal.cpp │ │ ├── operator__greaterequal.output │ │ ├── operator__less.cpp │ │ ├── operator__less.output │ │ ├── operator__lessequal.cpp │ │ ├── operator__lessequal.output │ │ ├── operator__notequal.cpp │ │ ├── operator__notequal.output │ │ ├── operator__notequal__nullptr_t.cpp │ │ ├── operator__notequal__nullptr_t.output │ │ ├── operator__value_t.cpp │ │ ├── operator__value_t.output │ │ ├── operator_deserialize.cpp │ │ ├── operator_deserialize.output │ │ ├── operator_literal_json.cpp │ │ ├── operator_literal_json.output │ │ ├── operator_literal_json_pointer.cpp │ │ ├── operator_literal_json_pointer.output │ │ ├── operator_serialize.cpp │ │ ├── operator_serialize.output │ │ ├── operatorarray__key_type.cpp │ │ ├── operatorarray__key_type.output │ │ ├── operatorarray__key_type_const.cpp │ │ ├── operatorarray__key_type_const.output │ │ ├── operatorarray__size_type.cpp │ │ ├── operatorarray__size_type.output │ │ ├── operatorarray__size_type_const.cpp │ │ ├── operatorarray__size_type_const.output │ │ ├── operatorjson_pointer.cpp │ │ ├── operatorjson_pointer.output │ │ ├── operatorjson_pointer_const.cpp │ │ ├── operatorjson_pointer_const.output │ │ ├── ordered_json.cpp │ │ ├── ordered_json.output │ │ ├── ordered_map.cpp │ │ ├── ordered_map.output │ │ ├── other_error.cpp │ │ ├── other_error.output │ │ ├── out_of_range.cpp │ │ ├── out_of_range.output │ │ ├── parse__allow_exceptions.cpp │ │ ├── parse__allow_exceptions.output │ │ ├── parse__array__parser_callback_t.cpp │ │ ├── parse__array__parser_callback_t.output │ │ ├── parse__contiguouscontainer__parser_callback_t.cpp │ │ ├── parse__contiguouscontainer__parser_callback_t.output │ │ ├── parse__istream__parser_callback_t.cpp │ │ ├── parse__istream__parser_callback_t.output │ │ ├── parse__iterator_pair.cpp │ │ ├── parse__iterator_pair.link │ │ ├── parse__iterator_pair.output │ │ ├── parse__pointers.cpp │ │ ├── parse__pointers.link │ │ ├── parse__pointers.output │ │ ├── parse__string__parser_callback_t.cpp │ │ ├── parse__string__parser_callback_t.output │ │ ├── parse_error.cpp │ │ ├── parse_error.output │ │ ├── patch.cpp │ │ ├── patch.output │ │ ├── push_back.cpp │ │ ├── push_back.output │ │ ├── push_back__initializer_list.cpp │ │ ├── push_back__initializer_list.output │ │ ├── push_back__object_t__value.cpp │ │ ├── push_back__object_t__value.output │ │ ├── rbegin.cpp │ │ ├── rbegin.output │ │ ├── rend.cpp │ │ ├── rend.output │ │ ├── sax_parse.cpp │ │ ├── sax_parse.output │ │ ├── sax_parse__binary.cpp │ │ ├── sax_parse__binary.output │ │ ├── size.cpp │ │ ├── size.output │ │ ├── std_hash.cpp │ │ ├── std_hash.output │ │ ├── std_swap.cpp │ │ ├── std_swap.output │ │ ├── string_t.cpp │ │ ├── string_t.output │ │ ├── swap__array_t.cpp │ │ ├── swap__array_t.output │ │ ├── swap__binary_t.cpp │ │ ├── swap__binary_t.output │ │ ├── swap__object_t.cpp │ │ ├── swap__object_t.output │ │ ├── swap__reference.cpp │ │ ├── swap__reference.output │ │ ├── swap__string_t.cpp │ │ ├── swap__string_t.output │ │ ├── to_bjdata.cpp │ │ ├── to_bjdata.output │ │ ├── to_bson.cpp │ │ ├── to_bson.output │ │ ├── to_cbor.cpp │ │ ├── to_cbor.output │ │ ├── to_msgpack.cpp │ │ ├── to_msgpack.output │ │ ├── to_string.cpp │ │ ├── to_string.output │ │ ├── to_ubjson.cpp │ │ ├── to_ubjson.output │ │ ├── type.cpp │ │ ├── type.output │ │ ├── type_error.cpp │ │ ├── type_error.output │ │ ├── type_name.cpp │ │ ├── type_name.output │ │ ├── unflatten.cpp │ │ ├── unflatten.output │ │ ├── update.cpp │ │ ├── update.output │ │ ├── update__range.cpp │ │ └── update__range.output │ ├── index.md │ ├── json.gif │ ├── mkdocs │ │ ├── Makefile │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── adl_serializer │ │ │ │ │ ├── from_json.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── to_json.md │ │ │ │ ├── basic_json │ │ │ │ │ ├── accept.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── array_t.md │ │ │ │ │ ├── at.md │ │ │ │ │ ├── back.md │ │ │ │ │ ├── basic_json.md │ │ │ │ │ ├── begin.md │ │ │ │ │ ├── binary.md │ │ │ │ │ ├── binary_t.md │ │ │ │ │ ├── boolean_t.md │ │ │ │ │ ├── cbegin.md │ │ │ │ │ ├── cbor_tag_handler_t.md │ │ │ │ │ ├── cend.md │ │ │ │ │ ├── clear.md │ │ │ │ │ ├── contains.md │ │ │ │ │ ├── count.md │ │ │ │ │ ├── crbegin.md │ │ │ │ │ ├── crend.md │ │ │ │ │ ├── default_object_comparator_t.md │ │ │ │ │ ├── diff.md │ │ │ │ │ ├── dump.md │ │ │ │ │ ├── emplace.md │ │ │ │ │ ├── emplace_back.md │ │ │ │ │ ├── empty.md │ │ │ │ │ ├── end.md │ │ │ │ │ ├── erase.md │ │ │ │ │ ├── error_handler_t.md │ │ │ │ │ ├── exception.md │ │ │ │ │ ├── find.md │ │ │ │ │ ├── flatten.md │ │ │ │ │ ├── from_bjdata.md │ │ │ │ │ ├── from_bson.md │ │ │ │ │ ├── from_cbor.md │ │ │ │ │ ├── from_msgpack.md │ │ │ │ │ ├── from_ubjson.md │ │ │ │ │ ├── front.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── get_allocator.md │ │ │ │ │ ├── get_binary.md │ │ │ │ │ ├── get_ptr.md │ │ │ │ │ ├── get_ref.md │ │ │ │ │ ├── get_to.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── input_format_t.md │ │ │ │ │ ├── insert.md │ │ │ │ │ ├── invalid_iterator.md │ │ │ │ │ ├── is_array.md │ │ │ │ │ ├── is_binary.md │ │ │ │ │ ├── is_boolean.md │ │ │ │ │ ├── is_discarded.md │ │ │ │ │ ├── is_null.md │ │ │ │ │ ├── is_number.md │ │ │ │ │ ├── is_number_float.md │ │ │ │ │ ├── is_number_integer.md │ │ │ │ │ ├── is_number_unsigned.md │ │ │ │ │ ├── is_object.md │ │ │ │ │ ├── is_primitive.md │ │ │ │ │ ├── is_string.md │ │ │ │ │ ├── is_structured.md │ │ │ │ │ ├── items.md │ │ │ │ │ ├── json_serializer.md │ │ │ │ │ ├── max_size.md │ │ │ │ │ ├── merge_patch.md │ │ │ │ │ ├── meta.md │ │ │ │ │ ├── number_float_t.md │ │ │ │ │ ├── number_integer_t.md │ │ │ │ │ ├── number_unsigned_t.md │ │ │ │ │ ├── object.md │ │ │ │ │ ├── object_comparator_t.md │ │ │ │ │ ├── object_t.md │ │ │ │ │ ├── operator+=.md │ │ │ │ │ ├── operator=.md │ │ │ │ │ ├── operator[].md │ │ │ │ │ ├── operator_ValueType.md │ │ │ │ │ ├── operator_eq.md │ │ │ │ │ ├── operator_ge.md │ │ │ │ │ ├── operator_gt.md │ │ │ │ │ ├── operator_gtgt.md │ │ │ │ │ ├── operator_le.md │ │ │ │ │ ├── operator_literal_json.md │ │ │ │ │ ├── operator_literal_json_pointer.md │ │ │ │ │ ├── operator_lt.md │ │ │ │ │ ├── operator_ltlt.md │ │ │ │ │ ├── operator_ne.md │ │ │ │ │ ├── operator_spaceship.md │ │ │ │ │ ├── operator_value_t.md │ │ │ │ │ ├── other_error.md │ │ │ │ │ ├── out_of_range.md │ │ │ │ │ ├── parse.md │ │ │ │ │ ├── parse_error.md │ │ │ │ │ ├── parse_event_t.md │ │ │ │ │ ├── parser_callback_t.md │ │ │ │ │ ├── patch.md │ │ │ │ │ ├── push_back.md │ │ │ │ │ ├── rbegin.md │ │ │ │ │ ├── rend.md │ │ │ │ │ ├── sax_parse.md │ │ │ │ │ ├── size.md │ │ │ │ │ ├── std_hash.md │ │ │ │ │ ├── std_swap.md │ │ │ │ │ ├── string_t.md │ │ │ │ │ ├── swap.md │ │ │ │ │ ├── to_bjdata.md │ │ │ │ │ ├── to_bson.md │ │ │ │ │ ├── to_cbor.md │ │ │ │ │ ├── to_msgpack.md │ │ │ │ │ ├── to_string.md │ │ │ │ │ ├── to_ubjson.md │ │ │ │ │ ├── type.md │ │ │ │ │ ├── type_error.md │ │ │ │ │ ├── type_name.md │ │ │ │ │ ├── unflatten.md │ │ │ │ │ ├── update.md │ │ │ │ │ ├── value.md │ │ │ │ │ ├── value_t.md │ │ │ │ │ └── ~basic_json.md │ │ │ │ ├── byte_container_with_subtype │ │ │ │ │ ├── byte_container_with_subtype.md │ │ │ │ │ ├── clear_subtype.md │ │ │ │ │ ├── has_subtype.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── set_subtype.md │ │ │ │ │ └── subtype.md │ │ │ │ ├── json.md │ │ │ │ ├── json_pointer │ │ │ │ │ ├── back.md │ │ │ │ │ ├── empty.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json_pointer.md │ │ │ │ │ ├── operator_slash.md │ │ │ │ │ ├── operator_slasheq.md │ │ │ │ │ ├── operator_string.md │ │ │ │ │ ├── parent_pointer.md │ │ │ │ │ ├── pop_back.md │ │ │ │ │ ├── push_back.md │ │ │ │ │ ├── string_t.md │ │ │ │ │ └── to_string.md │ │ │ │ ├── json_sax │ │ │ │ │ ├── binary.md │ │ │ │ │ ├── boolean.md │ │ │ │ │ ├── end_array.md │ │ │ │ │ ├── end_object.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── key.md │ │ │ │ │ ├── null.md │ │ │ │ │ ├── number_float.md │ │ │ │ │ ├── number_integer.md │ │ │ │ │ ├── number_unsigned.md │ │ │ │ │ ├── parse_error.md │ │ │ │ │ ├── start_array.md │ │ │ │ │ ├── start_object.md │ │ │ │ │ └── string.md │ │ │ │ ├── macros │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json_assert.md │ │ │ │ │ ├── json_diagnostics.md │ │ │ │ │ ├── json_disable_enum_serialization.md │ │ │ │ │ ├── json_has_cpp_11.md │ │ │ │ │ ├── json_has_filesystem.md │ │ │ │ │ ├── json_has_ranges.md │ │ │ │ │ ├── json_has_three_way_comparison.md │ │ │ │ │ ├── json_no_io.md │ │ │ │ │ ├── json_noexception.md │ │ │ │ │ ├── json_skip_library_version_check.md │ │ │ │ │ ├── json_skip_unsupported_compiler_check.md │ │ │ │ │ ├── json_throw_user.md │ │ │ │ │ ├── json_use_implicit_conversions.md │ │ │ │ │ ├── json_use_legacy_discarded_value_comparison.md │ │ │ │ │ ├── nlohmann_define_type_intrusive.md │ │ │ │ │ ├── nlohmann_define_type_non_intrusive.md │ │ │ │ │ ├── nlohmann_json_serialize_enum.md │ │ │ │ │ └── nlohmann_json_version_major.md │ │ │ │ ├── ordered_json.md │ │ │ │ └── ordered_map.md │ │ │ ├── css │ │ │ │ └── custom.css │ │ │ ├── features │ │ │ │ ├── arbitrary_types.md │ │ │ │ ├── assertions.md │ │ │ │ ├── binary_formats │ │ │ │ │ ├── bjdata.md │ │ │ │ │ ├── bson.md │ │ │ │ │ ├── cbor.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── messagepack.md │ │ │ │ │ └── ubjson.md │ │ │ │ ├── binary_values.md │ │ │ │ ├── comments.md │ │ │ │ ├── element_access │ │ │ │ │ ├── checked_access.md │ │ │ │ │ ├── default_value.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── unchecked_access.md │ │ │ │ ├── enum_conversion.md │ │ │ │ ├── iterators.md │ │ │ │ ├── json_patch.md │ │ │ │ ├── json_pointer.md │ │ │ │ ├── macros.md │ │ │ │ ├── merge_patch.md │ │ │ │ ├── object_order.md │ │ │ │ ├── parsing │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json_lines.md │ │ │ │ │ ├── parse_exceptions.md │ │ │ │ │ ├── parser_callbacks.md │ │ │ │ │ └── sax_interface.md │ │ │ │ └── types │ │ │ │ │ ├── index.md │ │ │ │ │ └── number_handling.md │ │ │ ├── home │ │ │ │ ├── code_of_conduct.md │ │ │ │ ├── design_goals.md │ │ │ │ ├── exceptions.md │ │ │ │ ├── faq.md │ │ │ │ ├── license.md │ │ │ │ ├── releases.md │ │ │ │ └── sponsors.md │ │ │ ├── images │ │ │ │ ├── callback_events.png │ │ │ │ ├── json_syntax_number.png │ │ │ │ ├── range-begin-end.svg │ │ │ │ └── range-rbegin-rend.svg │ │ │ ├── index.md │ │ │ └── integration │ │ │ │ ├── cmake.md │ │ │ │ ├── conan │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Conanfile.txt │ │ │ │ └── example.cpp │ │ │ │ ├── example.cpp │ │ │ │ ├── index.md │ │ │ │ ├── package_managers.md │ │ │ │ ├── pkg-config.md │ │ │ │ └── vcpkg │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── example.cpp │ │ ├── mkdocs.yml │ │ ├── requirements.txt │ │ └── scripts │ │ │ └── check_structure.py │ └── usages │ │ ├── ios.png │ │ └── macos.png │ ├── include │ └── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp │ ├── meson.build │ ├── nlohmann_json.natvis │ ├── single_include │ └── nlohmann │ │ └── json.hpp │ ├── tests │ ├── CMakeLists.txt │ ├── Makefile │ ├── benchmarks │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── benchmarks.cpp │ ├── cmake_add_subdirectory │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_fetch_content │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_fetch_content2 │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_import │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_import_minver │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_target_include_directories │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── Bar.cpp │ │ │ ├── Bar.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Foo.cpp │ │ │ ├── Foo.hpp │ │ │ └── main.cpp │ ├── cuda_example │ │ ├── CMakeLists.txt │ │ └── json_cuda.cu │ ├── fuzzing.md │ ├── reports │ │ ├── 2016-08-29-fuzz │ │ │ ├── exec_speed.png │ │ │ ├── fuzz.tiff │ │ │ ├── high_freq.png │ │ │ ├── index.html │ │ │ └── low_freq.png │ │ ├── 2016-09-09-nativejson_benchmark │ │ │ ├── README.md │ │ │ ├── conformance_Nlohmann (C++11).md │ │ │ ├── conformance_overall_Result.png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Memory_(byte).png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Time_(ms).png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_2._Stringify_Time_(ms).png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_3._Prettify_Time_(ms).png │ │ │ └── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_7._Code_size_FileSize_(byte).png │ │ └── 2016-10-02-fuzz │ │ │ ├── exec_speed.png │ │ │ ├── fuzz.tiff │ │ │ ├── high_freq.png │ │ │ ├── index.html │ │ │ └── low_freq.png │ ├── src │ │ ├── fuzzer-driver_afl.cpp │ │ ├── fuzzer-parse_bjdata.cpp │ │ ├── fuzzer-parse_bson.cpp │ │ ├── fuzzer-parse_cbor.cpp │ │ ├── fuzzer-parse_json.cpp │ │ ├── fuzzer-parse_msgpack.cpp │ │ ├── fuzzer-parse_ubjson.cpp │ │ ├── test_utils.hpp │ │ ├── unit-32bit.cpp │ │ ├── unit-algorithms.cpp │ │ ├── unit-allocator.cpp │ │ ├── unit-alt-string.cpp │ │ ├── unit-assert_macro.cpp │ │ ├── unit-binary_formats.cpp │ │ ├── unit-bjdata.cpp │ │ ├── unit-bson.cpp │ │ ├── unit-byte_container_with_subtype.cpp │ │ ├── unit-capacity.cpp │ │ ├── unit-cbor.cpp │ │ ├── unit-class_const_iterator.cpp │ │ ├── unit-class_iterator.cpp │ │ ├── unit-class_lexer.cpp │ │ ├── unit-class_parser.cpp │ │ ├── unit-comparison.cpp │ │ ├── unit-concepts.cpp │ │ ├── unit-constructor1.cpp │ │ ├── unit-constructor2.cpp │ │ ├── unit-convenience.cpp │ │ ├── unit-conversions.cpp │ │ ├── unit-deserialization.cpp │ │ ├── unit-diagnostics.cpp │ │ ├── unit-disabled_exceptions.cpp │ │ ├── unit-element_access1.cpp │ │ ├── unit-element_access2.cpp │ │ ├── unit-hash.cpp │ │ ├── unit-inspection.cpp │ │ ├── unit-items.cpp │ │ ├── unit-iterators1.cpp │ │ ├── unit-iterators2.cpp │ │ ├── unit-json_patch.cpp │ │ ├── unit-json_pointer.cpp │ │ ├── unit-large_json.cpp │ │ ├── unit-merge_patch.cpp │ │ ├── unit-meta.cpp │ │ ├── unit-modifiers.cpp │ │ ├── unit-msgpack.cpp │ │ ├── unit-noexcept.cpp │ │ ├── unit-ordered_json.cpp │ │ ├── unit-ordered_map.cpp │ │ ├── unit-pointer_access.cpp │ │ ├── unit-readme.cpp │ │ ├── unit-reference_access.cpp │ │ ├── unit-regression1.cpp │ │ ├── unit-regression2.cpp │ │ ├── unit-serialization.cpp │ │ ├── unit-testsuites.cpp │ │ ├── unit-to_chars.cpp │ │ ├── unit-ubjson.cpp │ │ ├── unit-udt.cpp │ │ ├── unit-udt_macro.cpp │ │ ├── unit-unicode1.cpp │ │ ├── unit-unicode2.cpp │ │ ├── unit-unicode3.cpp │ │ ├── unit-unicode4.cpp │ │ ├── unit-unicode5.cpp │ │ ├── unit-user_defined_input.cpp │ │ ├── unit-wstring.cpp │ │ └── unit.cpp │ └── thirdparty │ │ ├── Fuzzer │ │ ├── CMakeLists.txt │ │ ├── FuzzerCorpus.h │ │ ├── FuzzerCrossOver.cpp │ │ ├── FuzzerDefs.h │ │ ├── FuzzerDictionary.h │ │ ├── FuzzerDriver.cpp │ │ ├── FuzzerExtFunctions.def │ │ ├── FuzzerExtFunctions.h │ │ ├── FuzzerExtFunctionsDlsym.cpp │ │ ├── FuzzerExtFunctionsWeak.cpp │ │ ├── FuzzerExtFunctionsWeakAlias.cpp │ │ ├── FuzzerFlags.def │ │ ├── FuzzerIO.cpp │ │ ├── FuzzerIO.h │ │ ├── FuzzerIOPosix.cpp │ │ ├── FuzzerIOWindows.cpp │ │ ├── FuzzerInterface.h │ │ ├── FuzzerInternal.h │ │ ├── FuzzerLoop.cpp │ │ ├── FuzzerMain.cpp │ │ ├── FuzzerMerge.cpp │ │ ├── FuzzerMerge.h │ │ ├── FuzzerMutate.cpp │ │ ├── FuzzerMutate.h │ │ ├── FuzzerOptions.h │ │ ├── FuzzerRandom.h │ │ ├── FuzzerSHA1.cpp │ │ ├── FuzzerSHA1.h │ │ ├── FuzzerTracePC.cpp │ │ ├── FuzzerTracePC.h │ │ ├── FuzzerTraceState.cpp │ │ ├── FuzzerUtil.cpp │ │ ├── FuzzerUtil.h │ │ ├── FuzzerUtilDarwin.cpp │ │ ├── FuzzerUtilLinux.cpp │ │ ├── FuzzerUtilPosix.cpp │ │ ├── FuzzerUtilWindows.cpp │ │ ├── FuzzerValueBitMap.h │ │ ├── README.txt │ │ ├── afl │ │ │ └── afl_driver.cpp │ │ ├── build.sh │ │ ├── cxx.dict │ │ ├── standalone │ │ │ └── StandaloneFuzzTargetMain.c │ │ └── test │ │ │ ├── AFLDriverTest.cpp │ │ │ ├── AbsNegAndConstant64Test.cpp │ │ │ ├── AbsNegAndConstantTest.cpp │ │ │ ├── AccumulateAllocationsTest.cpp │ │ │ ├── BufferOverflowOnInput.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CallerCalleeTest.cpp │ │ │ ├── CounterTest.cpp │ │ │ ├── CustomCrossOverTest.cpp │ │ │ ├── CustomMutatorTest.cpp │ │ │ ├── DSO1.cpp │ │ │ ├── DSO2.cpp │ │ │ ├── DSOTestExtra.cpp │ │ │ ├── DSOTestMain.cpp │ │ │ ├── DivTest.cpp │ │ │ ├── EmptyTest.cpp │ │ │ ├── FourIndependentBranchesTest.cpp │ │ │ ├── FullCoverageSetTest.cpp │ │ │ ├── FuzzerUnittest.cpp │ │ │ ├── InitializeTest.cpp │ │ │ ├── LeakTest.cpp │ │ │ ├── LeakTimeoutTest.cpp │ │ │ ├── LoadTest.cpp │ │ │ ├── MemcmpTest.cpp │ │ │ ├── NthRunCrashTest.cpp │ │ │ ├── NullDerefOnEmptyTest.cpp │ │ │ ├── NullDerefTest.cpp │ │ │ ├── OneHugeAllocTest.cpp │ │ │ ├── OutOfMemorySingleLargeMallocTest.cpp │ │ │ ├── OutOfMemoryTest.cpp │ │ │ ├── RepeatedBytesTest.cpp │ │ │ ├── RepeatedMemcmp.cpp │ │ │ ├── ShrinkControlFlowTest.cpp │ │ │ ├── ShrinkValueProfileTest.cpp │ │ │ ├── SignedIntOverflowTest.cpp │ │ │ ├── SimpleCmpTest.cpp │ │ │ ├── SimpleDictionaryTest.cpp │ │ │ ├── SimpleHashTest.cpp │ │ │ ├── SimpleTest.cpp │ │ │ ├── SimpleThreadedTest.cpp │ │ │ ├── SingleMemcmpTest.cpp │ │ │ ├── SingleStrcmpTest.cpp │ │ │ ├── SingleStrncmpTest.cpp │ │ │ ├── SpamyTest.cpp │ │ │ ├── StrcmpTest.cpp │ │ │ ├── StrncmpOOBTest.cpp │ │ │ ├── StrncmpTest.cpp │ │ │ ├── StrstrTest.cpp │ │ │ ├── SwapCmpTest.cpp │ │ │ ├── Switch2Test.cpp │ │ │ ├── SwitchTest.cpp │ │ │ ├── ThreadedLeakTest.cpp │ │ │ ├── ThreadedTest.cpp │ │ │ ├── TimeoutEmptyTest.cpp │ │ │ ├── TimeoutTest.cpp │ │ │ ├── TraceMallocTest.cpp │ │ │ ├── UninstrumentedTest.cpp │ │ │ ├── afl-driver-extra-stats.test │ │ │ ├── afl-driver-stderr.test │ │ │ ├── caller-callee.test │ │ │ ├── coverage.test │ │ │ ├── dict1.txt │ │ │ ├── dump_coverage.test │ │ │ ├── fuzzer-customcrossover.test │ │ │ ├── fuzzer-custommutator.test │ │ │ ├── fuzzer-dict.test │ │ │ ├── fuzzer-dirs.test │ │ │ ├── fuzzer-fdmask.test │ │ │ ├── fuzzer-finalstats.test │ │ │ ├── fuzzer-flags.test │ │ │ ├── fuzzer-jobs.test │ │ │ ├── fuzzer-leak.test │ │ │ ├── fuzzer-oom-with-profile.test │ │ │ ├── fuzzer-oom.test │ │ │ ├── fuzzer-printcovpcs.test │ │ │ ├── fuzzer-runs.test │ │ │ ├── fuzzer-seed.test │ │ │ ├── fuzzer-segv.test │ │ │ ├── fuzzer-singleinputs.test │ │ │ ├── fuzzer-threaded.test │ │ │ ├── fuzzer-timeout.test │ │ │ ├── fuzzer-traces-hooks.test │ │ │ ├── fuzzer-ubsan.test │ │ │ ├── fuzzer.test │ │ │ ├── hi.txt │ │ │ ├── lit.cfg │ │ │ ├── lit.site.cfg.in │ │ │ ├── merge.test │ │ │ ├── minimize_crash.test │ │ │ ├── no-coverage │ │ │ └── CMakeLists.txt │ │ │ ├── repeated-bytes.test │ │ │ ├── shrink.test │ │ │ ├── simple-cmp.test │ │ │ ├── standalone.test │ │ │ ├── swap-cmp.test │ │ │ ├── trace-malloc.test │ │ │ ├── ubsan │ │ │ └── CMakeLists.txt │ │ │ ├── ulimit.test │ │ │ ├── uninstrumented │ │ │ └── CMakeLists.txt │ │ │ ├── unit │ │ │ ├── lit.cfg │ │ │ └── lit.site.cfg.in │ │ │ ├── value-profile-cmp.test │ │ │ ├── value-profile-cmp2.test │ │ │ ├── value-profile-cmp3.test │ │ │ ├── value-profile-cmp4.test │ │ │ ├── value-profile-div.test │ │ │ ├── value-profile-load.test │ │ │ ├── value-profile-mem.test │ │ │ ├── value-profile-set.test │ │ │ ├── value-profile-strcmp.test │ │ │ ├── value-profile-strncmp.test │ │ │ └── value-profile-switch.test │ │ ├── doctest │ │ ├── LICENSE.txt │ │ ├── doctest.h │ │ └── doctest_compatibility.h │ │ ├── fifo_map │ │ ├── LICENSE.MIT │ │ └── fifo_map.hpp │ │ └── imapdl │ │ ├── filterbr.py │ │ └── gpl-3.0.txt │ ├── tools │ ├── amalgamate │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── amalgamate.py │ │ └── config.json │ ├── cpplint │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── cpplint.py │ │ └── update.sh │ ├── gdb_pretty_printer │ │ ├── README.md │ │ └── nlohmann-json.py │ ├── macro_builder │ │ └── main.cpp │ └── serve_header │ │ ├── README.md │ │ ├── demo.png │ │ ├── requirements.txt │ │ ├── serve_header.py │ │ └── serve_header.yml.example │ └── wsjcpp.yml ├── BUILDING.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── HOOKS.md ├── JK-hook.ips ├── LICENSE.md ├── README.md ├── README.md.template ├── README.md.template-foot ├── analyze.py ├── byacc ├── ACKNOWLEDGEMENTS ├── MANIFEST ├── Makefile ├── NEW_FEATURES ├── NO_WARRANTY ├── README ├── closure.c ├── defs.h ├── error.c ├── flex.html ├── lalr.c ├── lr0.c ├── main.c ├── manpage ├── mkpar.c ├── orig │ ├── part01.txt │ ├── part02.txt │ ├── part03.txt │ ├── part04.txt │ ├── part05.txt │ ├── part1.sh │ ├── part2.sh │ ├── part3.sh │ ├── part4.sh │ └── part5.sh ├── output.c ├── reader.c ├── skeleton.c ├── symtab.c ├── verbose.c └── warshall.c ├── cmake_modules ├── Copyright.txt ├── FindGameNetworkingSockets.cmake ├── FindSDL2_mixer.cmake ├── GameNetworkingSockets_v1.4.1.patch ├── build_freeglut.cmake ├── build_glew.cmake ├── build_gns.cmake ├── build_host_zlib.cmake ├── build_libpng.cmake ├── build_openal.cmake ├── build_physfs.cmake ├── build_protobuf.cmake ├── build_protoc.cmake ├── build_sdl.cmake ├── build_sdl_mixer.cmake ├── build_zlib.cmake ├── config_platform_deps.cmake ├── misc_stdcpp_fs_fix.cmake ├── openjkdf2_ds_arm9.ld ├── openjkdf2_dsi_arm9.mem ├── plat_android_arm64.cmake ├── plat_feat_full_sdl2.cmake ├── plat_hooks.cmake ├── plat_linux_32.cmake ├── plat_linux_64.cmake ├── plat_macos.cmake ├── plat_macos_x86_64.cmake ├── plat_mingw_x86_64.cmake ├── plat_msvc.cmake ├── plat_twl.cmake ├── plat_wasm.cmake ├── precompile_globals.cmake ├── target_android_all.cmake ├── target_linux_all.cmake ├── target_macos_all.cmake ├── toolchain_android_aarch64.cmake ├── toolchain_linux_32.cmake ├── toolchain_macos_x86_64.cmake ├── toolchain_mingw.cmake ├── toolchain_mingw_32.cmake ├── toolchain_native.cmake ├── toolchain_twl.cmake ├── toolchain_wasm.cmake └── version.cmake ├── cmake_modules_linux └── FindSDL2.cmake ├── combine_macos_appbundles.sh ├── distpkg_all.sh ├── distpkg_android.sh ├── distpkg_hotfix.sh ├── distpkg_linux_flatpak.sh ├── distpkg_macos.sh ├── distpkg_twl.sh ├── distpkg_version.sh ├── distpkg_win64.sh ├── docs └── images │ └── screenshot.png ├── flex ├── COPYING ├── Changes ├── MANIFEST ├── MISC │ ├── Atari.patches │ ├── MSDOS.notes │ ├── Makefile.VMS │ ├── README │ └── Turbo-C.notes ├── Makefile ├── PACKNOTES ├── README ├── ccl.c ├── dfa.c ├── ecs.c ├── flex.1 ├── flex.skel ├── flexdef.h ├── flexdoc.1 ├── gen.c ├── initscan.c ├── libmain.c ├── main.c ├── misc.c ├── nfa.c ├── parse.y ├── scan.c ├── scan.l ├── sym.c ├── tblcmp.c └── yylex.c ├── ida_copypaste_funclist_nostdlib.txt ├── lib ├── ogg_fix.patch └── physfs_macos.patch ├── packaging ├── android-project │ ├── app │ │ ├── build.gradle │ │ ├── build.gradle.template │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ │ ├── Android.mk │ │ │ │ └── CMakeLists.txt │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── HIDDevice.java │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ ├── SDLControllerManager.java │ │ │ │ └── SDLSurface.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── generate_icons.sh │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── dsi │ ├── icon.bmp │ └── sdcard │ │ ├── .dummy │ │ ├── README.txt │ │ └── jk1 │ │ └── resource │ │ └── ui │ │ └── bm │ │ ├── arrowleft.bm │ │ ├── arrowright.bm │ │ ├── bkbuildload.bm │ │ ├── bkbuildmulti.bm │ │ ├── bkdialog.bm │ │ ├── bkesc.BM │ │ ├── bkfieldlog.BM │ │ ├── bkforce.BM │ │ ├── bkloading.bm │ │ ├── bkmain.BM │ │ ├── bkmulti.bm │ │ ├── bksetup.BM │ │ ├── bksingle.BM │ │ ├── bktally.BM │ │ ├── check.BM │ │ ├── down15.bm │ │ ├── down150.bm │ │ ├── down320.bm │ │ ├── flminus.BM │ │ ├── flok.BM │ │ ├── flplus.BM │ │ ├── flreset.BM │ │ ├── flrotdow.BM │ │ ├── flrotlef.BM │ │ ├── flrotrig.BM │ │ ├── flrotup.BM │ │ ├── flspin.BM │ │ ├── fltransdown.BM │ │ ├── fltransleft.BM │ │ ├── fltransright.BM │ │ ├── fltransup.BM │ │ ├── foabsorb.bm │ │ ├── foblinding.bm │ │ ├── fodeadlysight.bm │ │ ├── fodestruction.bm │ │ ├── fogrip.bm │ │ ├── fohealth.bm │ │ ├── fojump.bm │ │ ├── fopersuasion.bm │ │ ├── foprotection.bm │ │ ├── fopull.bm │ │ ├── forcebrack8.bm │ │ ├── forcemeter.bm │ │ ├── forcemeterback.bm │ │ ├── foseeing.bm │ │ ├── fospeed.bm │ │ ├── fostars.bm │ │ ├── fothrow.bm │ │ ├── fothunderbolt.bm │ │ ├── icbacta8.bm │ │ ├── icbrack8.bm │ │ ├── icdatad8.bm │ │ ├── icdefau8.bm │ │ ├── icf_abs8.bm │ │ ├── icf_bli8.bm │ │ ├── icf_dea8.bm │ │ ├── icf_des8.bm │ │ ├── icf_gri8.bm │ │ ├── icf_hea8.bm │ │ ├── icf_jum8.bm │ │ ├── icf_lig8.bm │ │ ├── icf_per8.bm │ │ ├── icf_pro8.bm │ │ ├── icf_pul8.bm │ │ ├── icf_see8.bm │ │ ├── icf_spe8.bm │ │ ├── icf_thr8.bm │ │ ├── icfield8.bm │ │ ├── icgoldf8.bm │ │ ├── icgoldk8.bm │ │ ├── icirgog8.bm │ │ ├── ickeybl8.bm │ │ ├── ickeygr8.bm │ │ ├── ickeyim8.bm │ │ ├── ickeyre8.bm │ │ ├── ickeyye8.bm │ │ ├── icredfl8.bm │ │ ├── icredke8.bm │ │ ├── icwrchb8.bm │ │ ├── icwrchy8.bm │ │ ├── icwrenc8.bm │ │ ├── objectivescheck.bm │ │ ├── sabb2.bm │ │ ├── sabdr2.bm │ │ ├── sabg2.bm │ │ ├── sabo2.bm │ │ ├── sabr2.bm │ │ ├── sabv2.bm │ │ ├── saby2.bm │ │ ├── sliderback.BM │ │ ├── sliderback150.BM │ │ ├── sliderback200.BM │ │ ├── sliderfront.bm │ │ ├── sliderthumb.BM │ │ ├── statusleft.bm │ │ ├── statusright.bm │ │ ├── stbat.bm │ │ ├── stfieldlite.bm │ │ ├── stfrc.bm │ │ ├── stfrcsuper.bm │ │ ├── sthealth.bm │ │ ├── stshield.bm │ │ ├── up15.bm │ │ ├── up150.bm │ │ └── up320.bm ├── flatpak │ ├── build_linux_flatpak.sh │ ├── copy_icons.sh │ ├── generate_icons.sh │ ├── glew │ │ └── glew.json │ ├── glu │ │ └── glu-9.json │ ├── icons │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 192.png │ │ ├── 24.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 384.png │ │ ├── 48.png │ │ ├── 512.png │ │ ├── 64.png │ │ └── 96.png │ ├── org.openjkdf2.OpenJKDF2.desktop │ ├── org.openjkdf2.OpenJKDF2.metainfo.xml │ ├── org.openjkdf2.OpenJKDF2.template.yml │ └── python3-cogapp.json ├── icon-256.png ├── icon.png ├── macos │ └── Contents │ │ └── Info.plist ├── openjkdf2.ico ├── wasm │ └── index.html └── win32 │ ├── CMakeLists.txt │ ├── openjkdf2.manifest.in │ └── openjkdf2.rc ├── resource ├── shaders │ ├── blur_f.glsl │ ├── blur_v.glsl │ ├── default_f.glsl │ ├── default_v.glsl │ ├── menu_f.glsl │ ├── menu_v.glsl │ ├── ssao_f.glsl │ ├── ssao_mix_f.glsl │ ├── ssao_mix_v.glsl │ ├── ssao_v.glsl │ ├── texfbo_f.glsl │ ├── texfbo_v.glsl │ ├── ui_f.glsl │ └── ui_v.glsl ├── ssl │ └── cacert.pem └── ui │ ├── openjkdf2.uni │ └── openjkdf2_i8n.uni ├── scripts ├── assets │ ├── bm_to_bm.py │ ├── fixup_dw_jkl.py │ ├── gob-extract.py │ ├── mat-to-png.py │ └── mat_to_mat.py ├── ghidra │ ├── importDataSymbols.py │ └── importSymbols.py ├── helper_CopyMinGWDLLs.sh ├── ida │ ├── bulkrename.py │ └── bulkrenameenums.py ├── increment_version.py └── increment_version_commits.py ├── src ├── AI │ ├── sithAI.c │ ├── sithAI.h │ ├── sithAIAwareness.c │ ├── sithAIAwareness.h │ ├── sithAIClass.c │ ├── sithAIClass.h │ ├── sithAICmd.c │ └── sithAICmd.h ├── Cog │ ├── cog.l │ ├── cog.y │ ├── flex.skel │ ├── jkCog.c │ ├── jkCog.h │ ├── lex.yy.c │ ├── sithCog.c │ ├── sithCog.h │ ├── sithCogExec.c │ ├── sithCogExec.h │ ├── sithCogFunction.c │ ├── sithCogFunction.h │ ├── sithCogFunctionAI.c │ ├── sithCogFunctionAI.h │ ├── sithCogFunctionPlayer.c │ ├── sithCogFunctionPlayer.h │ ├── sithCogFunctionSector.c │ ├── sithCogFunctionSector.h │ ├── sithCogFunctionSound.c │ ├── sithCogFunctionSound.h │ ├── sithCogFunctionSurface.c │ ├── sithCogFunctionSurface.h │ ├── sithCogFunctionThing.c │ ├── sithCogFunctionThing.h │ ├── sithCogParse.c │ ├── sithCogParse.h │ ├── sithCogYACC.h │ ├── y.tab.c │ └── y.tab.h ├── Devices │ ├── sithComm.c │ ├── sithComm.h │ ├── sithConsole.c │ ├── sithConsole.h │ ├── sithControl.c │ ├── sithControl.h │ ├── sithSound.c │ ├── sithSound.h │ ├── sithSoundMixer.c │ └── sithSoundMixer.h ├── Dss │ ├── jkDSS.c │ ├── jkDSS.h │ ├── sithDSS.c │ ├── sithDSS.h │ ├── sithDSSCog.c │ ├── sithDSSCog.h │ ├── sithDSSThing.c │ ├── sithDSSThing.h │ ├── sithGamesave.c │ ├── sithGamesave.h │ ├── sithMulti.c │ └── sithMulti.h ├── Engine │ ├── rdActive.c │ ├── rdActive.h │ ├── rdCamera.c │ ├── rdCamera.h │ ├── rdCanvas.c │ ├── rdCanvas.h │ ├── rdClip.c │ ├── rdClip.h │ ├── rdColormap.c │ ├── rdColormap.h │ ├── rdKeyframe.c │ ├── rdKeyframe.h │ ├── rdLight.c │ ├── rdLight.h │ ├── rdMaterial.c │ ├── rdMaterial.h │ ├── rdPuppet.c │ ├── rdPuppet.h │ ├── rdThing.c │ ├── rdThing.h │ ├── rdroid.c │ ├── rdroid.h │ ├── sithAnimClass.c │ ├── sithAnimClass.h │ ├── sithCamera.c │ ├── sithCamera.h │ ├── sithCollision.c │ ├── sithCollision.h │ ├── sithIntersect.c │ ├── sithIntersect.h │ ├── sithKeyFrame.c │ ├── sithKeyFrame.h │ ├── sithParticle.c │ ├── sithParticle.h │ ├── sithPhysics.c │ ├── sithPhysics.h │ ├── sithPuppet.c │ ├── sithPuppet.h │ ├── sithRender.c │ ├── sithRender.h │ ├── sithRenderSky.c │ └── sithRenderSky.h ├── Gameplay │ ├── jkSaber.c │ ├── jkSaber.h │ ├── sithEvent.c │ ├── sithEvent.h │ ├── sithInventory.c │ ├── sithInventory.h │ ├── sithOverlayMap.c │ ├── sithOverlayMap.h │ ├── sithPlayer.c │ ├── sithPlayer.h │ ├── sithPlayerActions.c │ ├── sithPlayerActions.h │ ├── sithTime.c │ └── sithTime.h ├── General │ ├── Darray.c │ ├── Darray.h │ ├── crc32.c │ ├── crc32.h │ ├── md5.c │ ├── md5.h │ ├── sithStrTable.c │ ├── sithStrTable.h │ ├── stdBitmap.c │ ├── stdBitmap.h │ ├── stdBitmapRle.c │ ├── stdBitmapRle.h │ ├── stdColor.c │ ├── stdColor.h │ ├── stdConffile.c │ ├── stdConffile.h │ ├── stdFileUtil.c │ ├── stdFileUtil.h │ ├── stdFnames.c │ ├── stdFnames.h │ ├── stdFont.c │ ├── stdFont.h │ ├── stdHashTable.c │ ├── stdHashTable.h │ ├── stdJSON.cpp │ ├── stdJSON.h │ ├── stdLinklist.c │ ├── stdLinklist.h │ ├── stdMath.c │ ├── stdMath.h │ ├── stdMathTables.h │ ├── stdMemory.c │ ├── stdMemory.h │ ├── stdPalEffects.c │ ├── stdPalEffects.h │ ├── stdPcx.c │ ├── stdPcx.h │ ├── stdSingleLinklist.c │ ├── stdSingleLinklist.h │ ├── stdStrTable.c │ ├── stdStrTable.h │ ├── stdString.c │ ├── stdString.h │ ├── util.c │ └── util.h ├── Gui │ ├── jkGUI.c │ ├── jkGUI.h │ ├── jkGUIBuildMulti.c │ ├── jkGUIBuildMulti.h │ ├── jkGUIControlOptions.c │ ├── jkGUIControlOptions.h │ ├── jkGUIControlSaveLoad.c │ ├── jkGUIControlSaveLoad.h │ ├── jkGUIDecision.c │ ├── jkGUIDecision.h │ ├── jkGUIDialog.c │ ├── jkGUIDialog.h │ ├── jkGUIDisplay.h │ ├── jkGUIEsc.c │ ├── jkGUIEsc.h │ ├── jkGUIForce.c │ ├── jkGUIForce.h │ ├── jkGUIGameplay.c │ ├── jkGUIGameplay.h │ ├── jkGUIGeneral.c │ ├── jkGUIGeneral.h │ ├── jkGUIJoystick.c │ ├── jkGUIJoystick.h │ ├── jkGUIKeyboard.c │ ├── jkGUIKeyboard.h │ ├── jkGUIMain.c │ ├── jkGUIMain.h │ ├── jkGUIMap.c │ ├── jkGUIMap.h │ ├── jkGUIMods.c │ ├── jkGUIMods.h │ ├── jkGUIMouse.c │ ├── jkGUIMouse.h │ ├── jkGUIMultiTally.c │ ├── jkGUIMultiTally.h │ ├── jkGUIMultiplayer.c │ ├── jkGUIMultiplayer.h │ ├── jkGUINetHost.c │ ├── jkGUINetHost.h │ ├── jkGUIObjectives.c │ ├── jkGUIObjectives.h │ ├── jkGUIPlayer.c │ ├── jkGUIPlayer.h │ ├── jkGUIRend.c │ ├── jkGUIRend.h │ ├── jkGUISaveLoad.c │ ├── jkGUISaveLoad.h │ ├── jkGUISetup.c │ ├── jkGUISetup.h │ ├── jkGUISingleTally.c │ ├── jkGUISingleTally.h │ ├── jkGUISingleplayer.c │ ├── jkGUISingleplayer.h │ ├── jkGUISound.c │ ├── jkGUISound.h │ ├── jkGUITitle.c │ └── jkGUITitle.h ├── Main │ ├── InstallHelper.c │ ├── InstallHelper.h │ ├── Main.c │ ├── Main.h │ ├── jk.h │ ├── jkAI.c │ ├── jkAI.h │ ├── jkControl.c │ ├── jkControl.h │ ├── jkCredits.c │ ├── jkCredits.h │ ├── jkCutscene.c │ ├── jkCutscene.h │ ├── jkDev.c │ ├── jkDev.h │ ├── jkEpisode.c │ ├── jkEpisode.h │ ├── jkGame.c │ ├── jkGame.h │ ├── jkGob.c │ ├── jkGob.h │ ├── jkHud.c │ ├── jkHud.h │ ├── jkHudCameraView.c │ ├── jkHudCameraView.h │ ├── jkHudInv.c │ ├── jkHudInv.h │ ├── jkHudScope.c │ ├── jkHudScope.h │ ├── jkMain.c │ ├── jkMain.h │ ├── jkQuakeConsole.c │ ├── jkQuakeConsole.h │ ├── jkRes.c │ ├── jkRes.h │ ├── jkSmack.c │ ├── jkSmack.h │ ├── jkStrings.c │ ├── jkStrings.h │ ├── sithCommand.c │ ├── sithCommand.h │ ├── sithCvar.c │ ├── sithCvar.h │ ├── sithMain.c │ ├── sithMain.h │ └── smack.h ├── Platform │ ├── Common │ │ ├── stdControl.c │ │ ├── stdEmbeddedRes.c │ │ ├── stdEmbeddedRes.h │ │ ├── stdHttp.c │ │ ├── stdHttp.h │ │ ├── stdUpdater.cpp │ │ └── stdUpdater.h │ ├── D3D │ │ └── std3D.c │ ├── GL │ │ ├── jkgm.cpp │ │ ├── jkgm.h │ │ ├── shader_utils.c │ │ ├── shader_utils.h │ │ └── std3D.c │ ├── Networking │ │ ├── Basic │ │ │ ├── stdComm_basic.c │ │ │ └── stdComm_basic.h │ │ ├── GNS │ │ │ ├── stdComm_GNS.cpp │ │ │ └── stdComm_GNS.h │ │ └── None │ │ │ ├── stdComm_none.c │ │ │ └── stdComm_none.h │ ├── Posix │ │ └── wuRegistry.c │ ├── SDL2 │ │ ├── jkGUIDisplay.c │ │ └── stdControl.c │ ├── TWL │ │ ├── dlmalloc-config.h │ │ ├── dlmalloc.c │ │ ├── dlmalloc.h │ │ ├── jkGUIDisplay.c │ │ ├── mpu.s │ │ ├── mpu_internal.h │ │ ├── std3D.c │ │ ├── stdControl.c │ │ └── stdSound.c │ ├── Win32 │ │ └── wuRegistry.c │ ├── macOS │ │ ├── SDL_fix.h │ │ └── SDL_fix.m │ ├── std3D.h │ ├── stdControl.h │ └── wuRegistry.h ├── Primitives │ ├── rdDebug.c │ ├── rdDebug.h │ ├── rdMath.c │ ├── rdMath.h │ ├── rdMatrix.c │ ├── rdMatrix.h │ ├── rdModel3.c │ ├── rdModel3.h │ ├── rdParticle.c │ ├── rdParticle.h │ ├── rdPolyLine.c │ ├── rdPolyLine.h │ ├── rdPrimit2.c │ ├── rdPrimit2.h │ ├── rdPrimit3.c │ ├── rdPrimit3.h │ ├── rdRect.h │ ├── rdSprite.c │ ├── rdSprite.h │ ├── rdVector.c │ └── rdVector.h ├── Raster │ ├── rdCache.c │ ├── rdCache.h │ ├── rdFace.c │ ├── rdFace.h │ ├── rdRaster.c │ └── rdRaster.h ├── SDL2_helper.h ├── Tests │ └── rle_test.c ├── Win95 │ ├── DirectX.c │ ├── DirectX.h │ ├── Display.h │ ├── Video.c │ ├── Video.h │ ├── WinIdk.c │ ├── WinIdk.h │ ├── Window.c │ ├── Window.h │ ├── Window_Twl.c │ ├── Windows.c │ ├── Windows.h │ ├── std.c │ ├── std.h │ ├── stdComm.c │ ├── stdComm.h │ ├── stdConsole.c │ ├── stdConsole.h │ ├── stdDisplay.c │ ├── stdDisplay.h │ ├── stdDisplay_Twl.c │ ├── stdGdi.c │ ├── stdGdi.h │ ├── stdGob.c │ ├── stdGob.h │ ├── stdMci.c │ ├── stdMci.h │ ├── stdSound.c │ ├── stdSound.h │ └── stdVBuffer.h ├── World │ ├── jkPlayer.c │ ├── jkPlayer.h │ ├── sithActor.c │ ├── sithActor.h │ ├── sithArchLighting.c │ ├── sithArchLighting.h │ ├── sithExplosion.c │ ├── sithExplosion.h │ ├── sithItem.c │ ├── sithItem.h │ ├── sithMap.c │ ├── sithMap.h │ ├── sithMaterial.c │ ├── sithMaterial.h │ ├── sithModel.c │ ├── sithModel.h │ ├── sithSector.c │ ├── sithSector.h │ ├── sithSoundClass.c │ ├── sithSoundClass.h │ ├── sithSprite.c │ ├── sithSprite.h │ ├── sithSurface.c │ ├── sithSurface.h │ ├── sithTemplate.c │ ├── sithTemplate.h │ ├── sithThing.c │ ├── sithThing.h │ ├── sithTrackThing.c │ ├── sithTrackThing.h │ ├── sithWeapon.c │ ├── sithWeapon.h │ ├── sithWorld.c │ └── sithWorld.h ├── engine_config.h ├── external │ ├── curl │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.mk │ │ ├── Makefile.soname │ │ ├── altsvc.c │ │ ├── altsvc.h │ │ ├── amigaos.c │ │ ├── amigaos.h │ │ ├── arpa_telnet.h │ │ ├── asyn-ares.c │ │ ├── asyn-thread.c │ │ ├── asyn.h │ │ ├── base64.c │ │ ├── bufref.c │ │ ├── bufref.h │ │ ├── c-hyper.c │ │ ├── c-hyper.h │ │ ├── cf-https-connect.c │ │ ├── cf-https-connect.h │ │ ├── cf-socket.c │ │ ├── cf-socket.h │ │ ├── cfilters.c │ │ ├── cfilters.h │ │ ├── config-amigaos.h │ │ ├── config-dos.h │ │ ├── config-linux_mine.h │ │ ├── config-mac.h │ │ ├── config-mac_mine.h │ │ ├── config-os400.h │ │ ├── config-plan9.h │ │ ├── config-riscos.h │ │ ├── config-win32.h │ │ ├── config-win32ce.h │ │ ├── conncache.c │ │ ├── conncache.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── content_encoding.c │ │ ├── content_encoding.h │ │ ├── cookie.c │ │ ├── cookie.h │ │ ├── curl │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── header.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── options.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ ├── urlapi.h │ │ │ └── websockets.h │ │ ├── curl_addrinfo.c │ │ ├── curl_addrinfo.h │ │ ├── curl_base64.h │ │ ├── curl_config.h │ │ ├── curl_ctype.h │ │ ├── curl_des.c │ │ ├── curl_des.h │ │ ├── curl_endian.c │ │ ├── curl_endian.h │ │ ├── curl_fnmatch.c │ │ ├── curl_fnmatch.h │ │ ├── curl_get_line.c │ │ ├── curl_get_line.h │ │ ├── curl_gethostname.c │ │ ├── curl_gethostname.h │ │ ├── curl_gssapi.c │ │ ├── curl_gssapi.h │ │ ├── curl_hmac.h │ │ ├── curl_krb5.h │ │ ├── curl_ldap.h │ │ ├── curl_log.c │ │ ├── curl_log.h │ │ ├── curl_md4.h │ │ ├── curl_md5.h │ │ ├── curl_memory.h │ │ ├── curl_memrchr.c │ │ ├── curl_memrchr.h │ │ ├── curl_multibyte.c │ │ ├── curl_multibyte.h │ │ ├── curl_ntlm_core.c │ │ ├── curl_ntlm_core.h │ │ ├── curl_ntlm_wb.c │ │ ├── curl_ntlm_wb.h │ │ ├── curl_path.c │ │ ├── curl_path.h │ │ ├── curl_printf.h │ │ ├── curl_range.c │ │ ├── curl_range.h │ │ ├── curl_rtmp.c │ │ ├── curl_rtmp.h │ │ ├── curl_sasl.c │ │ ├── curl_sasl.h │ │ ├── curl_setup.h │ │ ├── curl_setup_once.h │ │ ├── curl_sha256.h │ │ ├── curl_sspi.c │ │ ├── curl_sspi.h │ │ ├── curl_threads.c │ │ ├── curl_threads.h │ │ ├── curlx.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── doh.c │ │ ├── doh.h │ │ ├── dynbuf.c │ │ ├── dynbuf.h │ │ ├── easy.c │ │ ├── easy_lock.h │ │ ├── easygetopt.c │ │ ├── easyif.h │ │ ├── easyoptions.c │ │ ├── easyoptions.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── file.c │ │ ├── file.h │ │ ├── fileinfo.c │ │ ├── fileinfo.h │ │ ├── fopen.c │ │ ├── fopen.h │ │ ├── formdata.c │ │ ├── formdata.h │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── ftplistparser.c │ │ ├── ftplistparser.h │ │ ├── functypes.h │ │ ├── getenv.c │ │ ├── getinfo.c │ │ ├── getinfo.h │ │ ├── gopher.c │ │ ├── gopher.h │ │ ├── h2h3.c │ │ ├── h2h3.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── headers.c │ │ ├── headers.h │ │ ├── hmac.c │ │ ├── hostasyn.c │ │ ├── hostip.c │ │ ├── hostip.h │ │ ├── hostip4.c │ │ ├── hostip6.c │ │ ├── hostsyn.c │ │ ├── hsts.c │ │ ├── hsts.h │ │ ├── http.c │ │ ├── http.h │ │ ├── http2.c │ │ ├── http2.h │ │ ├── http_aws_sigv4.c │ │ ├── http_aws_sigv4.h │ │ ├── http_chunks.c │ │ ├── http_chunks.h │ │ ├── http_digest.c │ │ ├── http_digest.h │ │ ├── http_negotiate.c │ │ ├── http_negotiate.h │ │ ├── http_ntlm.c │ │ ├── http_ntlm.h │ │ ├── http_proxy.c │ │ ├── http_proxy.h │ │ ├── idn.c │ │ ├── idn.h │ │ ├── if2ip.c │ │ ├── if2ip.h │ │ ├── imap.c │ │ ├── imap.h │ │ ├── inet_ntop.c │ │ ├── inet_ntop.h │ │ ├── inet_pton.c │ │ ├── inet_pton.h │ │ ├── krb5.c │ │ ├── ldap.c │ │ ├── libcurl.plist │ │ ├── libcurl.plist.in │ │ ├── libcurl.rc │ │ ├── libcurl.vers │ │ ├── libcurl.vers.in │ │ ├── llist.c │ │ ├── llist.h │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mprintf.c │ │ ├── mqtt.c │ │ ├── mqtt.h │ │ ├── multi.c │ │ ├── multihandle.h │ │ ├── multiif.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── nonblock.c │ │ ├── nonblock.h │ │ ├── noproxy.c │ │ ├── noproxy.h │ │ ├── openldap.c │ │ ├── optiontable.pl │ │ ├── parsedate.c │ │ ├── parsedate.h │ │ ├── pingpong.c │ │ ├── pingpong.h │ │ ├── pop3.c │ │ ├── pop3.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── psl.c │ │ ├── psl.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── rename.c │ │ ├── rename.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── select.c │ │ ├── select.h │ │ ├── sendf.c │ │ ├── sendf.h │ │ ├── setopt.c │ │ ├── setopt.h │ │ ├── setup-os400.h │ │ ├── setup-vms.h │ │ ├── setup-win32.h │ │ ├── sha256.c │ │ ├── share.c │ │ ├── share.h │ │ ├── sigpipe.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── smb.c │ │ ├── smb.h │ │ ├── smtp.c │ │ ├── smtp.h │ │ ├── sockaddr.h │ │ ├── socketpair.c │ │ ├── socketpair.h │ │ ├── socks.c │ │ ├── socks.h │ │ ├── socks_gssapi.c │ │ ├── socks_sspi.c │ │ ├── speedcheck.c │ │ ├── speedcheck.h │ │ ├── splay.c │ │ ├── splay.h │ │ ├── stamp-h1 │ │ ├── strcase.c │ │ ├── strcase.h │ │ ├── strdup.c │ │ ├── strdup.h │ │ ├── strerror.c │ │ ├── strerror.h │ │ ├── strtok.c │ │ ├── strtok.h │ │ ├── strtoofft.c │ │ ├── strtoofft.h │ │ ├── system_win32.c │ │ ├── system_win32.h │ │ ├── telnet.c │ │ ├── telnet.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timediff.c │ │ ├── timediff.h │ │ ├── timeval.c │ │ ├── timeval.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── url.c │ │ ├── url.h │ │ ├── urlapi-int.h │ │ ├── urlapi.c │ │ ├── urldata.h │ │ ├── vauth │ │ │ ├── .deps │ │ │ │ ├── libcurl_la-cleartext.Plo │ │ │ │ ├── libcurl_la-cram.Plo │ │ │ │ ├── libcurl_la-digest.Plo │ │ │ │ ├── libcurl_la-digest_sspi.Plo │ │ │ │ ├── libcurl_la-gsasl.Plo │ │ │ │ ├── libcurl_la-krb5_gssapi.Plo │ │ │ │ ├── libcurl_la-krb5_sspi.Plo │ │ │ │ ├── libcurl_la-ntlm.Plo │ │ │ │ ├── libcurl_la-ntlm_sspi.Plo │ │ │ │ ├── libcurl_la-oauth2.Plo │ │ │ │ ├── libcurl_la-spnego_gssapi.Plo │ │ │ │ ├── libcurl_la-spnego_sspi.Plo │ │ │ │ ├── libcurl_la-vauth.Plo │ │ │ │ ├── libcurlu_la-cleartext.Plo │ │ │ │ ├── libcurlu_la-cram.Plo │ │ │ │ ├── libcurlu_la-digest.Plo │ │ │ │ ├── libcurlu_la-digest_sspi.Plo │ │ │ │ ├── libcurlu_la-gsasl.Plo │ │ │ │ ├── libcurlu_la-krb5_gssapi.Plo │ │ │ │ ├── libcurlu_la-krb5_sspi.Plo │ │ │ │ ├── libcurlu_la-ntlm.Plo │ │ │ │ ├── libcurlu_la-ntlm_sspi.Plo │ │ │ │ ├── libcurlu_la-oauth2.Plo │ │ │ │ ├── libcurlu_la-spnego_gssapi.Plo │ │ │ │ ├── libcurlu_la-spnego_sspi.Plo │ │ │ │ └── libcurlu_la-vauth.Plo │ │ │ ├── cleartext.c │ │ │ ├── cram.c │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_sspi.c │ │ │ ├── gsasl.c │ │ │ ├── krb5_gssapi.c │ │ │ ├── krb5_sspi.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── ntlm_sspi.c │ │ │ ├── oauth2.c │ │ │ ├── spnego_gssapi.c │ │ │ ├── spnego_sspi.c │ │ │ ├── vauth.c │ │ │ └── vauth.h │ │ ├── version.c │ │ ├── version_win32.c │ │ ├── version_win32.h │ │ ├── vquic │ │ │ ├── .deps │ │ │ │ ├── libcurl_la-curl_msh3.Plo │ │ │ │ ├── libcurl_la-curl_ngtcp2.Plo │ │ │ │ ├── libcurl_la-curl_quiche.Plo │ │ │ │ ├── libcurl_la-vquic.Plo │ │ │ │ ├── libcurlu_la-curl_msh3.Plo │ │ │ │ ├── libcurlu_la-curl_ngtcp2.Plo │ │ │ │ ├── libcurlu_la-curl_quiche.Plo │ │ │ │ └── libcurlu_la-vquic.Plo │ │ │ ├── curl_msh3.c │ │ │ ├── curl_msh3.h │ │ │ ├── curl_ngtcp2.c │ │ │ ├── curl_ngtcp2.h │ │ │ ├── curl_quiche.c │ │ │ ├── curl_quiche.h │ │ │ ├── vquic.c │ │ │ ├── vquic.h │ │ │ └── vquic_int.h │ │ ├── vssh │ │ │ ├── .deps │ │ │ │ ├── libcurl_la-libssh.Plo │ │ │ │ ├── libcurl_la-libssh2.Plo │ │ │ │ ├── libcurl_la-wolfssh.Plo │ │ │ │ ├── libcurlu_la-libssh.Plo │ │ │ │ ├── libcurlu_la-libssh2.Plo │ │ │ │ └── libcurlu_la-wolfssh.Plo │ │ │ ├── libssh.c │ │ │ ├── libssh2.c │ │ │ ├── ssh.h │ │ │ └── wolfssh.c │ │ ├── vtls │ │ │ ├── .deps │ │ │ │ ├── libcurl_la-bearssl.Plo │ │ │ │ ├── libcurl_la-gskit.Plo │ │ │ │ ├── libcurl_la-gtls.Plo │ │ │ │ ├── libcurl_la-hostcheck.Plo │ │ │ │ ├── libcurl_la-keylog.Plo │ │ │ │ ├── libcurl_la-mbedtls.Plo │ │ │ │ ├── libcurl_la-mbedtls_threadlock.Plo │ │ │ │ ├── libcurl_la-nss.Plo │ │ │ │ ├── libcurl_la-openssl.Plo │ │ │ │ ├── libcurl_la-rustls.Plo │ │ │ │ ├── libcurl_la-schannel.Plo │ │ │ │ ├── libcurl_la-schannel_verify.Plo │ │ │ │ ├── libcurl_la-sectransp.Plo │ │ │ │ ├── libcurl_la-vtls.Plo │ │ │ │ ├── libcurl_la-wolfssl.Plo │ │ │ │ ├── libcurl_la-x509asn1.Plo │ │ │ │ ├── libcurlu_la-bearssl.Plo │ │ │ │ ├── libcurlu_la-gskit.Plo │ │ │ │ ├── libcurlu_la-gtls.Plo │ │ │ │ ├── libcurlu_la-hostcheck.Plo │ │ │ │ ├── libcurlu_la-keylog.Plo │ │ │ │ ├── libcurlu_la-mbedtls.Plo │ │ │ │ ├── libcurlu_la-mbedtls_threadlock.Plo │ │ │ │ ├── libcurlu_la-nss.Plo │ │ │ │ ├── libcurlu_la-openssl.Plo │ │ │ │ ├── libcurlu_la-rustls.Plo │ │ │ │ ├── libcurlu_la-schannel.Plo │ │ │ │ ├── libcurlu_la-schannel_verify.Plo │ │ │ │ ├── libcurlu_la-sectransp.Plo │ │ │ │ ├── libcurlu_la-vtls.Plo │ │ │ │ ├── libcurlu_la-wolfssl.Plo │ │ │ │ └── libcurlu_la-x509asn1.Plo │ │ │ ├── bearssl.c │ │ │ ├── bearssl.h │ │ │ ├── gskit.c │ │ │ ├── gskit.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── hostcheck.c │ │ │ ├── hostcheck.h │ │ │ ├── keylog.c │ │ │ ├── keylog.h │ │ │ ├── mbedtls.c │ │ │ ├── mbedtls.h │ │ │ ├── mbedtls_threadlock.c │ │ │ ├── mbedtls_threadlock.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── openssl.c │ │ │ ├── openssl.h │ │ │ ├── rustls.c │ │ │ ├── rustls.h │ │ │ ├── schannel.c │ │ │ ├── schannel.h │ │ │ ├── schannel_verify.c │ │ │ ├── sectransp.c │ │ │ ├── sectransp.h │ │ │ ├── vtls.c │ │ │ ├── vtls.h │ │ │ ├── vtls_int.h │ │ │ ├── wolfssl.c │ │ │ ├── wolfssl.h │ │ │ ├── x509asn1.c │ │ │ └── x509asn1.h │ │ ├── warnless.c │ │ ├── warnless.h │ │ ├── ws.c │ │ └── ws.h │ ├── fcaseopen │ │ ├── LICENSE.txt │ │ ├── fcaseopen.c │ │ └── fcaseopen.h │ ├── libsmacker │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README │ │ ├── configure.ac │ │ ├── smacker.c │ │ ├── smacker.h │ │ ├── smk_bitstream.c │ │ ├── smk_bitstream.h │ │ ├── smk_hufftree.c │ │ ├── smk_hufftree.h │ │ └── smk_malloc.h │ ├── libsmusher │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── src │ │ │ ├── codec48.c │ │ │ ├── codec48.h │ │ │ ├── endian.h │ │ │ ├── main.c │ │ │ ├── smush.c │ │ │ └── smush.h │ │ └── test.sh │ ├── mbedtls │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aesce.c │ │ ├── aesce.h │ │ ├── aesni.c │ │ ├── aesni.h │ │ ├── alignment.h │ │ ├── aria.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── bignum_core.c │ │ ├── bignum_core.h │ │ ├── bignum_mod.c │ │ ├── bignum_mod.h │ │ ├── bignum_mod_raw.c │ │ ├── bignum_mod_raw.h │ │ ├── bignum_mod_raw_invasive.h │ │ ├── bn_mul.h │ │ ├── camellia.c │ │ ├── ccm.c │ │ ├── chacha20.c │ │ ├── chachapoly.c │ │ ├── check_crypto_config.h │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── cipher_wrap.h │ │ ├── cmac.c │ │ ├── common.h │ │ ├── constant_time.c │ │ ├── constant_time_internal.h │ │ ├── constant_time_invasive.h │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecjpake.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── ecp_internal_alt.h │ │ ├── ecp_invasive.h │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── entropy_poll.h │ │ ├── error.c │ │ ├── gcm.c │ │ ├── hash_info.c │ │ ├── hash_info.h │ │ ├── hkdf.c │ │ ├── hmac_drbg.c │ │ ├── lmots.c- │ │ ├── lmots.h │ │ ├── lms.c- │ │ ├── mbedtls │ │ │ ├── aes.h │ │ │ ├── aria.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── build_info.h │ │ │ ├── camellia.h │ │ │ ├── ccm.h │ │ │ ├── chacha20.h │ │ │ ├── chachapoly.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cmac.h │ │ │ ├── compat-2.x.h │ │ │ ├── config_psa.h │ │ │ ├── constant_time.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecjpake.h │ │ │ ├── ecp.h │ │ │ ├── entropy.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── hkdf.h │ │ │ ├── hmac_drbg.h │ │ │ ├── legacy_or_psa.h │ │ │ ├── lms.h │ │ │ ├── mbedtls_config.h │ │ │ ├── md.h │ │ │ ├── md5.h │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── net_sockets.h │ │ │ ├── nist_kw.h │ │ │ ├── oid.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── pkcs7.h │ │ │ ├── platform.h │ │ │ ├── platform_time.h │ │ │ ├── platform_util.h │ │ │ ├── poly1305.h │ │ │ ├── private_access.h │ │ │ ├── psa_util.h │ │ │ ├── ripemd160.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── ssl_cookie.h │ │ │ ├── ssl_ticket.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ └── x509_csr.h │ │ ├── md.c │ │ ├── md5.c │ │ ├── md_wrap.h │ │ ├── memory_buffer_alloc.c │ │ ├── mps_common.h │ │ ├── mps_error.h │ │ ├── mps_reader.c │ │ ├── mps_reader.h │ │ ├── mps_trace.c │ │ ├── mps_trace.h │ │ ├── net_sockets.c │ │ ├── nist_kw.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── padlock.h │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_wrap.c │ │ ├── pk_wrap.h │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkcs7.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── pkwrite.h │ │ ├── platform.c │ │ ├── platform_util.c │ │ ├── poly1305.c │ │ ├── psa │ │ │ ├── crypto.h │ │ │ ├── crypto_builtin_composites.h │ │ │ ├── crypto_builtin_primitives.h │ │ │ ├── crypto_compat.h │ │ │ ├── crypto_config.h │ │ │ ├── crypto_driver_common.h │ │ │ ├── crypto_driver_contexts_composites.h │ │ │ ├── crypto_driver_contexts_primitives.h │ │ │ ├── crypto_extra.h │ │ │ ├── crypto_platform.h │ │ │ ├── crypto_se_driver.h │ │ │ ├── crypto_sizes.h │ │ │ ├── crypto_struct.h │ │ │ ├── crypto_types.h │ │ │ └── crypto_values.h │ │ ├── psa_crypto.c │ │ ├── psa_crypto_aead.c │ │ ├── psa_crypto_aead.h │ │ ├── psa_crypto_cipher.c │ │ ├── psa_crypto_cipher.h │ │ ├── psa_crypto_client.c │ │ ├── psa_crypto_core.h │ │ ├── psa_crypto_driver_wrappers.c │ │ ├── psa_crypto_driver_wrappers.h │ │ ├── psa_crypto_ecp.c │ │ ├── psa_crypto_ecp.h │ │ ├── psa_crypto_hash.c │ │ ├── psa_crypto_hash.h │ │ ├── psa_crypto_invasive.h │ │ ├── psa_crypto_its.h │ │ ├── psa_crypto_mac.c │ │ ├── psa_crypto_mac.h │ │ ├── psa_crypto_pake.c │ │ ├── psa_crypto_random_impl.h │ │ ├── psa_crypto_rsa.c │ │ ├── psa_crypto_rsa.h │ │ ├── psa_crypto_se.c │ │ ├── psa_crypto_se.h │ │ ├── psa_crypto_slot_management.c │ │ ├── psa_crypto_slot_management.h │ │ ├── psa_crypto_storage.c │ │ ├── psa_crypto_storage.h │ │ ├── psa_its_file.c │ │ ├── ripemd160.c │ │ ├── rsa.c │ │ ├── rsa_alt_helpers.c │ │ ├── rsa_alt_helpers.h │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_client.c │ │ ├── ssl_client.h │ │ ├── ssl_cookie.c │ │ ├── ssl_debug_helpers.h │ │ ├── ssl_debug_helpers_generated.c │ │ ├── ssl_misc.h │ │ ├── ssl_msg.c │ │ ├── ssl_ticket.c │ │ ├── ssl_tls.c │ │ ├── ssl_tls12_client.c │ │ ├── ssl_tls12_server.c │ │ ├── ssl_tls13_client.c │ │ ├── ssl_tls13_generic.c │ │ ├── ssl_tls13_invasive.h │ │ ├── ssl_tls13_keys.c │ │ ├── ssl_tls13_keys.h │ │ ├── ssl_tls13_server.c │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509write_crt.c │ │ └── x509write_csr.c │ └── nativefiledialog-extended │ │ ├── LICENSE │ │ ├── README.md │ │ ├── nfd.h │ │ ├── nfd.hpp │ │ ├── nfd_cocoa.m │ │ ├── nfd_gtk.cpp │ │ └── nfd_win.cpp ├── fixed.h ├── globals.c.cog ├── globals.h.cog ├── hook.c ├── hook.h ├── jk.c ├── jk.h ├── main.c ├── main_globals.c ├── stdPlatform.c ├── stdPlatform.h ├── types.h ├── types_enums.h ├── types_win_enums.h ├── unusedWontImpl.c ├── version.c ├── version.h ├── wprintf.c └── wprintf.h ├── symbols.syms ├── symbols_static.sym ├── update-readme.sh └── wontimpl.txt /.github/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.github/build_macos.sh -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.github/workflows/win64.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vs/CMake Overview: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": "x64-Debug" 3 | } -------------------------------------------------------------------------------- /.vs/cmake.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.vs/cmake.db -------------------------------------------------------------------------------- /.vs/tasks.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/.vs/tasks.vs.json -------------------------------------------------------------------------------- /3rdparty/drmingw-0.9.3-win64/bin/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/json/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/.clang-format -------------------------------------------------------------------------------- /3rdparty/json/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/.clang-tidy -------------------------------------------------------------------------------- /3rdparty/json/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/.github/stale.yml -------------------------------------------------------------------------------- /3rdparty/json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/.gitignore -------------------------------------------------------------------------------- /3rdparty/json/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/CITATION.cff -------------------------------------------------------------------------------- /3rdparty/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/json/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/ChangeLog.md -------------------------------------------------------------------------------- /3rdparty/json/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/LICENSE.MIT -------------------------------------------------------------------------------- /3rdparty/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/Makefile -------------------------------------------------------------------------------- /3rdparty/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/README.md -------------------------------------------------------------------------------- /3rdparty/json/cmake/ci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/cmake/ci.cmake -------------------------------------------------------------------------------- /3rdparty/json/cmake/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/cmake/test.cmake -------------------------------------------------------------------------------- /3rdparty/json/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/docs/Makefile -------------------------------------------------------------------------------- /3rdparty/json/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/docs/README.md -------------------------------------------------------------------------------- /3rdparty/json/docs/avatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/docs/avatars.png -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/accept__string.output: -------------------------------------------------------------------------------- 1 | true false 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/array_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/basic_json__copyassignment.output: -------------------------------------------------------------------------------- 1 | 23 2 | 23 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/basic_json__moveconstructor.output: -------------------------------------------------------------------------------- 1 | null 2 | 23 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/basic_json__value.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/basic_json__value_ptr.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/basic_json__value_t.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/begin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/binary_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/boolean_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/cbegin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/cend.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/clear.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/crbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/crend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/end.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/erase__key_type.output: -------------------------------------------------------------------------------- 1 | {"two":2} 2 | 1 0 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/erase__size_type.output: -------------------------------------------------------------------------------- 1 | [0,1,3,4,5] 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/front.output: -------------------------------------------------------------------------------- 1 | true 2 | 17 3 | 23.42 4 | 1 5 | 1 6 | "Hello, world" 7 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/get_allocator.output: -------------------------------------------------------------------------------- 1 | "Hello, world!" 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/insert.output: -------------------------------------------------------------------------------- 1 | 10 2 | [1,2,10,3,4] 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/insert__ilist.output: -------------------------------------------------------------------------------- 1 | 7 2 | [1,2,3,4,7,8,9] 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/json_pointer__operator_string.output: -------------------------------------------------------------------------------- 1 | /foo/0 2 | /a~1b 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/json_pointer__string_t.output: -------------------------------------------------------------------------------- 1 | This is a string. 2 | true 3 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/nlohmann_json_version.output: -------------------------------------------------------------------------------- 1 | JSON for Modern C++ version 3.10.5 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/number_float_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/number_integer_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/number_unsigned_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/object_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/operator_literal_json_pointer.output: -------------------------------------------------------------------------------- 1 | "world" 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/operatorarray__key_type_const.output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/operatorarray__size_type_const.output: -------------------------------------------------------------------------------- 1 | "third" 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/operatorjson_pointer_const.output: -------------------------------------------------------------------------------- 1 | 1 2 | "foo" 3 | [1,2] 4 | 2 5 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/rbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/rend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/sax_parse__binary.output: -------------------------------------------------------------------------------- 1 | binary(val=[...]) 2 | 3 | result: true 4 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/string_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /3rdparty/json/docs/examples/to_string.output: -------------------------------------------------------------------------------- 1 | {"one":1,"two":2} 2 | 3 | 42 4 | -------------------------------------------------------------------------------- /3rdparty/json/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/docs/index.md -------------------------------------------------------------------------------- /3rdparty/json/docs/json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/docs/json.gif -------------------------------------------------------------------------------- /3rdparty/json/docs/mkdocs/docs/index.md: -------------------------------------------------------------------------------- 1 | # JSON for Modern C++ 2 | 3 | ![](images/json.gif) 4 | -------------------------------------------------------------------------------- /3rdparty/json/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/meson.build -------------------------------------------------------------------------------- /3rdparty/json/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/tests/Makefile -------------------------------------------------------------------------------- /3rdparty/json/tests/cmake_target_include_directories/project/Bar.cpp: -------------------------------------------------------------------------------- 1 | #include "Bar.hpp" 2 | 3 | class Bar; 4 | -------------------------------------------------------------------------------- /3rdparty/json/tests/cmake_target_include_directories/project/Foo.cpp: -------------------------------------------------------------------------------- 1 | #include "Foo.hpp" 2 | 3 | class Foo; 4 | -------------------------------------------------------------------------------- /3rdparty/json/tests/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/tests/fuzzing.md -------------------------------------------------------------------------------- /3rdparty/json/tests/thirdparty/Fuzzer/README.txt: -------------------------------------------------------------------------------- 1 | Move to http://llvm.org/docs/LibFuzzer.html 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/json/tests/thirdparty/Fuzzer/test/hi.txt: -------------------------------------------------------------------------------- 1 | Hi! -------------------------------------------------------------------------------- /3rdparty/json/tests/thirdparty/Fuzzer/test/ulimit.test: -------------------------------------------------------------------------------- 1 | RUN: ulimit -s 1000 2 | RUN: LLVMFuzzer-SimpleTest 3 | -------------------------------------------------------------------------------- /3rdparty/json/tools/serve_header/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==6.0 2 | watchdog==2.1.7 3 | -------------------------------------------------------------------------------- /3rdparty/json/wsjcpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/3rdparty/json/wsjcpp.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HOOKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/HOOKS.md -------------------------------------------------------------------------------- /JK-hook.ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/JK-hook.ips -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/README.md -------------------------------------------------------------------------------- /README.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/README.md.template -------------------------------------------------------------------------------- /README.md.template-foot: -------------------------------------------------------------------------------- 1 | ``` 2 | -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/analyze.py -------------------------------------------------------------------------------- /byacc/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /byacc/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/MANIFEST -------------------------------------------------------------------------------- /byacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/Makefile -------------------------------------------------------------------------------- /byacc/NEW_FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/NEW_FEATURES -------------------------------------------------------------------------------- /byacc/NO_WARRANTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/NO_WARRANTY -------------------------------------------------------------------------------- /byacc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/README -------------------------------------------------------------------------------- /byacc/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/closure.c -------------------------------------------------------------------------------- /byacc/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/defs.h -------------------------------------------------------------------------------- /byacc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/error.c -------------------------------------------------------------------------------- /byacc/flex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/flex.html -------------------------------------------------------------------------------- /byacc/lalr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/lalr.c -------------------------------------------------------------------------------- /byacc/lr0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/lr0.c -------------------------------------------------------------------------------- /byacc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/main.c -------------------------------------------------------------------------------- /byacc/manpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/manpage -------------------------------------------------------------------------------- /byacc/mkpar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/mkpar.c -------------------------------------------------------------------------------- /byacc/orig/part01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part01.txt -------------------------------------------------------------------------------- /byacc/orig/part02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part02.txt -------------------------------------------------------------------------------- /byacc/orig/part03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part03.txt -------------------------------------------------------------------------------- /byacc/orig/part04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part04.txt -------------------------------------------------------------------------------- /byacc/orig/part05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part05.txt -------------------------------------------------------------------------------- /byacc/orig/part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part1.sh -------------------------------------------------------------------------------- /byacc/orig/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part2.sh -------------------------------------------------------------------------------- /byacc/orig/part3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part3.sh -------------------------------------------------------------------------------- /byacc/orig/part4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part4.sh -------------------------------------------------------------------------------- /byacc/orig/part5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/orig/part5.sh -------------------------------------------------------------------------------- /byacc/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/output.c -------------------------------------------------------------------------------- /byacc/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/reader.c -------------------------------------------------------------------------------- /byacc/skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/skeleton.c -------------------------------------------------------------------------------- /byacc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/symtab.c -------------------------------------------------------------------------------- /byacc/verbose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/verbose.c -------------------------------------------------------------------------------- /byacc/warshall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/byacc/warshall.c -------------------------------------------------------------------------------- /cmake_modules/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/Copyright.txt -------------------------------------------------------------------------------- /cmake_modules/build_glew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/build_glew.cmake -------------------------------------------------------------------------------- /cmake_modules/build_gns.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/build_gns.cmake -------------------------------------------------------------------------------- /cmake_modules/build_sdl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/build_sdl.cmake -------------------------------------------------------------------------------- /cmake_modules/build_zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/build_zlib.cmake -------------------------------------------------------------------------------- /cmake_modules/plat_hooks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/plat_hooks.cmake -------------------------------------------------------------------------------- /cmake_modules/plat_macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/plat_macos.cmake -------------------------------------------------------------------------------- /cmake_modules/plat_msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/plat_msvc.cmake -------------------------------------------------------------------------------- /cmake_modules/plat_twl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/plat_twl.cmake -------------------------------------------------------------------------------- /cmake_modules/plat_wasm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/plat_wasm.cmake -------------------------------------------------------------------------------- /cmake_modules/toolchain_native.cmake: -------------------------------------------------------------------------------- 1 | # No-op -------------------------------------------------------------------------------- /cmake_modules/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/cmake_modules/version.cmake -------------------------------------------------------------------------------- /combine_macos_appbundles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/combine_macos_appbundles.sh -------------------------------------------------------------------------------- /distpkg_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_all.sh -------------------------------------------------------------------------------- /distpkg_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_android.sh -------------------------------------------------------------------------------- /distpkg_hotfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_hotfix.sh -------------------------------------------------------------------------------- /distpkg_linux_flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_linux_flatpak.sh -------------------------------------------------------------------------------- /distpkg_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_macos.sh -------------------------------------------------------------------------------- /distpkg_twl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_twl.sh -------------------------------------------------------------------------------- /distpkg_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_version.sh -------------------------------------------------------------------------------- /distpkg_win64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/distpkg_win64.sh -------------------------------------------------------------------------------- /docs/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/docs/images/screenshot.png -------------------------------------------------------------------------------- /flex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/COPYING -------------------------------------------------------------------------------- /flex/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/Changes -------------------------------------------------------------------------------- /flex/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/MANIFEST -------------------------------------------------------------------------------- /flex/MISC/Atari.patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/MISC/Atari.patches -------------------------------------------------------------------------------- /flex/MISC/MSDOS.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/MISC/MSDOS.notes -------------------------------------------------------------------------------- /flex/MISC/Makefile.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/MISC/Makefile.VMS -------------------------------------------------------------------------------- /flex/MISC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/MISC/README -------------------------------------------------------------------------------- /flex/MISC/Turbo-C.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/MISC/Turbo-C.notes -------------------------------------------------------------------------------- /flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/Makefile -------------------------------------------------------------------------------- /flex/PACKNOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/PACKNOTES -------------------------------------------------------------------------------- /flex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/README -------------------------------------------------------------------------------- /flex/ccl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/ccl.c -------------------------------------------------------------------------------- /flex/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/dfa.c -------------------------------------------------------------------------------- /flex/ecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/ecs.c -------------------------------------------------------------------------------- /flex/flex.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/flex.1 -------------------------------------------------------------------------------- /flex/flex.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/flex.skel -------------------------------------------------------------------------------- /flex/flexdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/flexdef.h -------------------------------------------------------------------------------- /flex/flexdoc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/flexdoc.1 -------------------------------------------------------------------------------- /flex/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/gen.c -------------------------------------------------------------------------------- /flex/initscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/initscan.c -------------------------------------------------------------------------------- /flex/libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/libmain.c -------------------------------------------------------------------------------- /flex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/main.c -------------------------------------------------------------------------------- /flex/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/misc.c -------------------------------------------------------------------------------- /flex/nfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/nfa.c -------------------------------------------------------------------------------- /flex/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/parse.y -------------------------------------------------------------------------------- /flex/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/scan.c -------------------------------------------------------------------------------- /flex/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/scan.l -------------------------------------------------------------------------------- /flex/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/sym.c -------------------------------------------------------------------------------- /flex/tblcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/tblcmp.c -------------------------------------------------------------------------------- /flex/yylex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/flex/yylex.c -------------------------------------------------------------------------------- /lib/ogg_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/lib/ogg_fix.patch -------------------------------------------------------------------------------- /lib/physfs_macos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/lib/physfs_macos.patch -------------------------------------------------------------------------------- /packaging/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /packaging/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /packaging/dsi/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/dsi/icon.bmp -------------------------------------------------------------------------------- /packaging/dsi/sdcard/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/dsi/sdcard/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/dsi/sdcard/README.txt -------------------------------------------------------------------------------- /packaging/flatpak/copy_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/copy_icons.sh -------------------------------------------------------------------------------- /packaging/flatpak/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/128.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/16.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/192.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/24.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/256.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/32.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/384.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/48.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/512.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/64.png -------------------------------------------------------------------------------- /packaging/flatpak/icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/flatpak/icons/96.png -------------------------------------------------------------------------------- /packaging/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/icon-256.png -------------------------------------------------------------------------------- /packaging/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/icon.png -------------------------------------------------------------------------------- /packaging/openjkdf2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/openjkdf2.ico -------------------------------------------------------------------------------- /packaging/wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/wasm/index.html -------------------------------------------------------------------------------- /packaging/win32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/win32/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/win32/openjkdf2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/packaging/win32/openjkdf2.rc -------------------------------------------------------------------------------- /resource/shaders/blur_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/blur_f.glsl -------------------------------------------------------------------------------- /resource/shaders/blur_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/blur_v.glsl -------------------------------------------------------------------------------- /resource/shaders/default_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/default_f.glsl -------------------------------------------------------------------------------- /resource/shaders/default_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/default_v.glsl -------------------------------------------------------------------------------- /resource/shaders/menu_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/menu_f.glsl -------------------------------------------------------------------------------- /resource/shaders/menu_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/menu_v.glsl -------------------------------------------------------------------------------- /resource/shaders/ssao_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/ssao_f.glsl -------------------------------------------------------------------------------- /resource/shaders/ssao_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/ssao_v.glsl -------------------------------------------------------------------------------- /resource/shaders/texfbo_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/texfbo_f.glsl -------------------------------------------------------------------------------- /resource/shaders/texfbo_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/texfbo_v.glsl -------------------------------------------------------------------------------- /resource/shaders/ui_f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/ui_f.glsl -------------------------------------------------------------------------------- /resource/shaders/ui_v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/shaders/ui_v.glsl -------------------------------------------------------------------------------- /resource/ssl/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/ssl/cacert.pem -------------------------------------------------------------------------------- /resource/ui/openjkdf2.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/ui/openjkdf2.uni -------------------------------------------------------------------------------- /resource/ui/openjkdf2_i8n.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/resource/ui/openjkdf2_i8n.uni -------------------------------------------------------------------------------- /scripts/assets/bm_to_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/assets/bm_to_bm.py -------------------------------------------------------------------------------- /scripts/assets/fixup_dw_jkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/assets/fixup_dw_jkl.py -------------------------------------------------------------------------------- /scripts/assets/gob-extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/assets/gob-extract.py -------------------------------------------------------------------------------- /scripts/assets/mat-to-png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/assets/mat-to-png.py -------------------------------------------------------------------------------- /scripts/assets/mat_to_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/assets/mat_to_mat.py -------------------------------------------------------------------------------- /scripts/ghidra/importSymbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/ghidra/importSymbols.py -------------------------------------------------------------------------------- /scripts/helper_CopyMinGWDLLs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/helper_CopyMinGWDLLs.sh -------------------------------------------------------------------------------- /scripts/ida/bulkrename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/ida/bulkrename.py -------------------------------------------------------------------------------- /scripts/ida/bulkrenameenums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/ida/bulkrenameenums.py -------------------------------------------------------------------------------- /scripts/increment_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/scripts/increment_version.py -------------------------------------------------------------------------------- /src/AI/sithAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAI.c -------------------------------------------------------------------------------- /src/AI/sithAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAI.h -------------------------------------------------------------------------------- /src/AI/sithAIAwareness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAIAwareness.c -------------------------------------------------------------------------------- /src/AI/sithAIAwareness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAIAwareness.h -------------------------------------------------------------------------------- /src/AI/sithAIClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAIClass.c -------------------------------------------------------------------------------- /src/AI/sithAIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAIClass.h -------------------------------------------------------------------------------- /src/AI/sithAICmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAICmd.c -------------------------------------------------------------------------------- /src/AI/sithAICmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/AI/sithAICmd.h -------------------------------------------------------------------------------- /src/Cog/cog.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/cog.l -------------------------------------------------------------------------------- /src/Cog/cog.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/cog.y -------------------------------------------------------------------------------- /src/Cog/flex.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/flex.skel -------------------------------------------------------------------------------- /src/Cog/jkCog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/jkCog.c -------------------------------------------------------------------------------- /src/Cog/jkCog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/jkCog.h -------------------------------------------------------------------------------- /src/Cog/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/lex.yy.c -------------------------------------------------------------------------------- /src/Cog/sithCog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCog.c -------------------------------------------------------------------------------- /src/Cog/sithCog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCog.h -------------------------------------------------------------------------------- /src/Cog/sithCogExec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogExec.c -------------------------------------------------------------------------------- /src/Cog/sithCogExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogExec.h -------------------------------------------------------------------------------- /src/Cog/sithCogFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunction.c -------------------------------------------------------------------------------- /src/Cog/sithCogFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunction.h -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionAI.c -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionAI.h -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionPlayer.c -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionPlayer.h -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionSector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionSector.c -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionSector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionSector.h -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionSound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionSound.c -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionSound.h -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionThing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionThing.c -------------------------------------------------------------------------------- /src/Cog/sithCogFunctionThing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogFunctionThing.h -------------------------------------------------------------------------------- /src/Cog/sithCogParse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogParse.c -------------------------------------------------------------------------------- /src/Cog/sithCogParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogParse.h -------------------------------------------------------------------------------- /src/Cog/sithCogYACC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/sithCogYACC.h -------------------------------------------------------------------------------- /src/Cog/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/y.tab.c -------------------------------------------------------------------------------- /src/Cog/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Cog/y.tab.h -------------------------------------------------------------------------------- /src/Devices/sithComm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithComm.c -------------------------------------------------------------------------------- /src/Devices/sithComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithComm.h -------------------------------------------------------------------------------- /src/Devices/sithConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithConsole.c -------------------------------------------------------------------------------- /src/Devices/sithConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithConsole.h -------------------------------------------------------------------------------- /src/Devices/sithControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithControl.c -------------------------------------------------------------------------------- /src/Devices/sithControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithControl.h -------------------------------------------------------------------------------- /src/Devices/sithSound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithSound.c -------------------------------------------------------------------------------- /src/Devices/sithSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithSound.h -------------------------------------------------------------------------------- /src/Devices/sithSoundMixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithSoundMixer.c -------------------------------------------------------------------------------- /src/Devices/sithSoundMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Devices/sithSoundMixer.h -------------------------------------------------------------------------------- /src/Dss/jkDSS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/jkDSS.c -------------------------------------------------------------------------------- /src/Dss/jkDSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/jkDSS.h -------------------------------------------------------------------------------- /src/Dss/sithDSS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithDSS.c -------------------------------------------------------------------------------- /src/Dss/sithDSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithDSS.h -------------------------------------------------------------------------------- /src/Dss/sithDSSCog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithDSSCog.c -------------------------------------------------------------------------------- /src/Dss/sithDSSCog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithDSSCog.h -------------------------------------------------------------------------------- /src/Dss/sithDSSThing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithDSSThing.c -------------------------------------------------------------------------------- /src/Dss/sithDSSThing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithDSSThing.h -------------------------------------------------------------------------------- /src/Dss/sithGamesave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithGamesave.c -------------------------------------------------------------------------------- /src/Dss/sithGamesave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithGamesave.h -------------------------------------------------------------------------------- /src/Dss/sithMulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithMulti.c -------------------------------------------------------------------------------- /src/Dss/sithMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Dss/sithMulti.h -------------------------------------------------------------------------------- /src/Engine/rdActive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdActive.c -------------------------------------------------------------------------------- /src/Engine/rdActive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdActive.h -------------------------------------------------------------------------------- /src/Engine/rdCamera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdCamera.c -------------------------------------------------------------------------------- /src/Engine/rdCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdCamera.h -------------------------------------------------------------------------------- /src/Engine/rdCanvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdCanvas.c -------------------------------------------------------------------------------- /src/Engine/rdCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdCanvas.h -------------------------------------------------------------------------------- /src/Engine/rdClip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdClip.c -------------------------------------------------------------------------------- /src/Engine/rdClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdClip.h -------------------------------------------------------------------------------- /src/Engine/rdColormap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdColormap.c -------------------------------------------------------------------------------- /src/Engine/rdColormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdColormap.h -------------------------------------------------------------------------------- /src/Engine/rdKeyframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdKeyframe.c -------------------------------------------------------------------------------- /src/Engine/rdKeyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdKeyframe.h -------------------------------------------------------------------------------- /src/Engine/rdLight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdLight.c -------------------------------------------------------------------------------- /src/Engine/rdLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdLight.h -------------------------------------------------------------------------------- /src/Engine/rdMaterial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdMaterial.c -------------------------------------------------------------------------------- /src/Engine/rdMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdMaterial.h -------------------------------------------------------------------------------- /src/Engine/rdPuppet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdPuppet.c -------------------------------------------------------------------------------- /src/Engine/rdPuppet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdPuppet.h -------------------------------------------------------------------------------- /src/Engine/rdThing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdThing.c -------------------------------------------------------------------------------- /src/Engine/rdThing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdThing.h -------------------------------------------------------------------------------- /src/Engine/rdroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdroid.c -------------------------------------------------------------------------------- /src/Engine/rdroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/rdroid.h -------------------------------------------------------------------------------- /src/Engine/sithAnimClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithAnimClass.c -------------------------------------------------------------------------------- /src/Engine/sithAnimClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithAnimClass.h -------------------------------------------------------------------------------- /src/Engine/sithCamera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithCamera.c -------------------------------------------------------------------------------- /src/Engine/sithCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithCamera.h -------------------------------------------------------------------------------- /src/Engine/sithCollision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithCollision.c -------------------------------------------------------------------------------- /src/Engine/sithCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithCollision.h -------------------------------------------------------------------------------- /src/Engine/sithIntersect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithIntersect.c -------------------------------------------------------------------------------- /src/Engine/sithIntersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithIntersect.h -------------------------------------------------------------------------------- /src/Engine/sithKeyFrame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithKeyFrame.c -------------------------------------------------------------------------------- /src/Engine/sithKeyFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithKeyFrame.h -------------------------------------------------------------------------------- /src/Engine/sithParticle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithParticle.c -------------------------------------------------------------------------------- /src/Engine/sithParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithParticle.h -------------------------------------------------------------------------------- /src/Engine/sithPhysics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithPhysics.c -------------------------------------------------------------------------------- /src/Engine/sithPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithPhysics.h -------------------------------------------------------------------------------- /src/Engine/sithPuppet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithPuppet.c -------------------------------------------------------------------------------- /src/Engine/sithPuppet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithPuppet.h -------------------------------------------------------------------------------- /src/Engine/sithRender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithRender.c -------------------------------------------------------------------------------- /src/Engine/sithRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithRender.h -------------------------------------------------------------------------------- /src/Engine/sithRenderSky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithRenderSky.c -------------------------------------------------------------------------------- /src/Engine/sithRenderSky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Engine/sithRenderSky.h -------------------------------------------------------------------------------- /src/Gameplay/jkSaber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/jkSaber.c -------------------------------------------------------------------------------- /src/Gameplay/jkSaber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/jkSaber.h -------------------------------------------------------------------------------- /src/Gameplay/sithEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithEvent.c -------------------------------------------------------------------------------- /src/Gameplay/sithEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithEvent.h -------------------------------------------------------------------------------- /src/Gameplay/sithInventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithInventory.c -------------------------------------------------------------------------------- /src/Gameplay/sithInventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithInventory.h -------------------------------------------------------------------------------- /src/Gameplay/sithOverlayMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithOverlayMap.c -------------------------------------------------------------------------------- /src/Gameplay/sithOverlayMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithOverlayMap.h -------------------------------------------------------------------------------- /src/Gameplay/sithPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithPlayer.c -------------------------------------------------------------------------------- /src/Gameplay/sithPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithPlayer.h -------------------------------------------------------------------------------- /src/Gameplay/sithTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithTime.c -------------------------------------------------------------------------------- /src/Gameplay/sithTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gameplay/sithTime.h -------------------------------------------------------------------------------- /src/General/Darray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/Darray.c -------------------------------------------------------------------------------- /src/General/Darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/Darray.h -------------------------------------------------------------------------------- /src/General/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/crc32.c -------------------------------------------------------------------------------- /src/General/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/crc32.h -------------------------------------------------------------------------------- /src/General/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/md5.c -------------------------------------------------------------------------------- /src/General/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/md5.h -------------------------------------------------------------------------------- /src/General/sithStrTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/sithStrTable.c -------------------------------------------------------------------------------- /src/General/sithStrTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/sithStrTable.h -------------------------------------------------------------------------------- /src/General/stdBitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdBitmap.c -------------------------------------------------------------------------------- /src/General/stdBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdBitmap.h -------------------------------------------------------------------------------- /src/General/stdBitmapRle.c: -------------------------------------------------------------------------------- 1 | #include "stdBitmapRle.h" -------------------------------------------------------------------------------- /src/General/stdBitmapRle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdBitmapRle.h -------------------------------------------------------------------------------- /src/General/stdColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdColor.c -------------------------------------------------------------------------------- /src/General/stdColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdColor.h -------------------------------------------------------------------------------- /src/General/stdConffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdConffile.c -------------------------------------------------------------------------------- /src/General/stdConffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdConffile.h -------------------------------------------------------------------------------- /src/General/stdFileUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdFileUtil.c -------------------------------------------------------------------------------- /src/General/stdFileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdFileUtil.h -------------------------------------------------------------------------------- /src/General/stdFnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdFnames.c -------------------------------------------------------------------------------- /src/General/stdFnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdFnames.h -------------------------------------------------------------------------------- /src/General/stdFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdFont.c -------------------------------------------------------------------------------- /src/General/stdFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdFont.h -------------------------------------------------------------------------------- /src/General/stdHashTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdHashTable.c -------------------------------------------------------------------------------- /src/General/stdHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdHashTable.h -------------------------------------------------------------------------------- /src/General/stdJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdJSON.cpp -------------------------------------------------------------------------------- /src/General/stdJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdJSON.h -------------------------------------------------------------------------------- /src/General/stdLinklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdLinklist.c -------------------------------------------------------------------------------- /src/General/stdLinklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdLinklist.h -------------------------------------------------------------------------------- /src/General/stdMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdMath.c -------------------------------------------------------------------------------- /src/General/stdMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdMath.h -------------------------------------------------------------------------------- /src/General/stdMathTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdMathTables.h -------------------------------------------------------------------------------- /src/General/stdMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdMemory.c -------------------------------------------------------------------------------- /src/General/stdMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdMemory.h -------------------------------------------------------------------------------- /src/General/stdPalEffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdPalEffects.c -------------------------------------------------------------------------------- /src/General/stdPalEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdPalEffects.h -------------------------------------------------------------------------------- /src/General/stdPcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdPcx.c -------------------------------------------------------------------------------- /src/General/stdPcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdPcx.h -------------------------------------------------------------------------------- /src/General/stdSingleLinklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdSingleLinklist.c -------------------------------------------------------------------------------- /src/General/stdSingleLinklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdSingleLinklist.h -------------------------------------------------------------------------------- /src/General/stdStrTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdStrTable.c -------------------------------------------------------------------------------- /src/General/stdStrTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdStrTable.h -------------------------------------------------------------------------------- /src/General/stdString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdString.c -------------------------------------------------------------------------------- /src/General/stdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/stdString.h -------------------------------------------------------------------------------- /src/General/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/util.c -------------------------------------------------------------------------------- /src/General/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/General/util.h -------------------------------------------------------------------------------- /src/Gui/jkGUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUI.c -------------------------------------------------------------------------------- /src/Gui/jkGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUI.h -------------------------------------------------------------------------------- /src/Gui/jkGUIBuildMulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIBuildMulti.c -------------------------------------------------------------------------------- /src/Gui/jkGUIBuildMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIBuildMulti.h -------------------------------------------------------------------------------- /src/Gui/jkGUIControlOptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIControlOptions.c -------------------------------------------------------------------------------- /src/Gui/jkGUIControlOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIControlOptions.h -------------------------------------------------------------------------------- /src/Gui/jkGUIControlSaveLoad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIControlSaveLoad.c -------------------------------------------------------------------------------- /src/Gui/jkGUIControlSaveLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIControlSaveLoad.h -------------------------------------------------------------------------------- /src/Gui/jkGUIDecision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIDecision.c -------------------------------------------------------------------------------- /src/Gui/jkGUIDecision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIDecision.h -------------------------------------------------------------------------------- /src/Gui/jkGUIDialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIDialog.c -------------------------------------------------------------------------------- /src/Gui/jkGUIDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIDialog.h -------------------------------------------------------------------------------- /src/Gui/jkGUIDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIDisplay.h -------------------------------------------------------------------------------- /src/Gui/jkGUIEsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIEsc.c -------------------------------------------------------------------------------- /src/Gui/jkGUIEsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIEsc.h -------------------------------------------------------------------------------- /src/Gui/jkGUIForce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIForce.c -------------------------------------------------------------------------------- /src/Gui/jkGUIForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIForce.h -------------------------------------------------------------------------------- /src/Gui/jkGUIGameplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIGameplay.c -------------------------------------------------------------------------------- /src/Gui/jkGUIGameplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIGameplay.h -------------------------------------------------------------------------------- /src/Gui/jkGUIGeneral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIGeneral.c -------------------------------------------------------------------------------- /src/Gui/jkGUIGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIGeneral.h -------------------------------------------------------------------------------- /src/Gui/jkGUIJoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIJoystick.c -------------------------------------------------------------------------------- /src/Gui/jkGUIJoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIJoystick.h -------------------------------------------------------------------------------- /src/Gui/jkGUIKeyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIKeyboard.c -------------------------------------------------------------------------------- /src/Gui/jkGUIKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIKeyboard.h -------------------------------------------------------------------------------- /src/Gui/jkGUIMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMain.c -------------------------------------------------------------------------------- /src/Gui/jkGUIMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMain.h -------------------------------------------------------------------------------- /src/Gui/jkGUIMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMap.c -------------------------------------------------------------------------------- /src/Gui/jkGUIMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMap.h -------------------------------------------------------------------------------- /src/Gui/jkGUIMods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMods.c -------------------------------------------------------------------------------- /src/Gui/jkGUIMods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMods.h -------------------------------------------------------------------------------- /src/Gui/jkGUIMouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMouse.c -------------------------------------------------------------------------------- /src/Gui/jkGUIMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMouse.h -------------------------------------------------------------------------------- /src/Gui/jkGUIMultiTally.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMultiTally.c -------------------------------------------------------------------------------- /src/Gui/jkGUIMultiTally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMultiTally.h -------------------------------------------------------------------------------- /src/Gui/jkGUIMultiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMultiplayer.c -------------------------------------------------------------------------------- /src/Gui/jkGUIMultiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIMultiplayer.h -------------------------------------------------------------------------------- /src/Gui/jkGUINetHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUINetHost.c -------------------------------------------------------------------------------- /src/Gui/jkGUINetHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUINetHost.h -------------------------------------------------------------------------------- /src/Gui/jkGUIObjectives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIObjectives.c -------------------------------------------------------------------------------- /src/Gui/jkGUIObjectives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIObjectives.h -------------------------------------------------------------------------------- /src/Gui/jkGUIPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIPlayer.c -------------------------------------------------------------------------------- /src/Gui/jkGUIPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIPlayer.h -------------------------------------------------------------------------------- /src/Gui/jkGUIRend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIRend.c -------------------------------------------------------------------------------- /src/Gui/jkGUIRend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUIRend.h -------------------------------------------------------------------------------- /src/Gui/jkGUISaveLoad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISaveLoad.c -------------------------------------------------------------------------------- /src/Gui/jkGUISaveLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISaveLoad.h -------------------------------------------------------------------------------- /src/Gui/jkGUISetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISetup.c -------------------------------------------------------------------------------- /src/Gui/jkGUISetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISetup.h -------------------------------------------------------------------------------- /src/Gui/jkGUISingleTally.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISingleTally.c -------------------------------------------------------------------------------- /src/Gui/jkGUISingleTally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISingleTally.h -------------------------------------------------------------------------------- /src/Gui/jkGUISingleplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISingleplayer.c -------------------------------------------------------------------------------- /src/Gui/jkGUISingleplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISingleplayer.h -------------------------------------------------------------------------------- /src/Gui/jkGUISound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISound.c -------------------------------------------------------------------------------- /src/Gui/jkGUISound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUISound.h -------------------------------------------------------------------------------- /src/Gui/jkGUITitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUITitle.c -------------------------------------------------------------------------------- /src/Gui/jkGUITitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Gui/jkGUITitle.h -------------------------------------------------------------------------------- /src/Main/InstallHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/InstallHelper.c -------------------------------------------------------------------------------- /src/Main/InstallHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/InstallHelper.h -------------------------------------------------------------------------------- /src/Main/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/Main.c -------------------------------------------------------------------------------- /src/Main/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/Main.h -------------------------------------------------------------------------------- /src/Main/jk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jk.h -------------------------------------------------------------------------------- /src/Main/jkAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkAI.c -------------------------------------------------------------------------------- /src/Main/jkAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkAI.h -------------------------------------------------------------------------------- /src/Main/jkControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkControl.c -------------------------------------------------------------------------------- /src/Main/jkControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkControl.h -------------------------------------------------------------------------------- /src/Main/jkCredits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkCredits.c -------------------------------------------------------------------------------- /src/Main/jkCredits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkCredits.h -------------------------------------------------------------------------------- /src/Main/jkCutscene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkCutscene.c -------------------------------------------------------------------------------- /src/Main/jkCutscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkCutscene.h -------------------------------------------------------------------------------- /src/Main/jkDev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkDev.c -------------------------------------------------------------------------------- /src/Main/jkDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkDev.h -------------------------------------------------------------------------------- /src/Main/jkEpisode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkEpisode.c -------------------------------------------------------------------------------- /src/Main/jkEpisode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkEpisode.h -------------------------------------------------------------------------------- /src/Main/jkGame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkGame.c -------------------------------------------------------------------------------- /src/Main/jkGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkGame.h -------------------------------------------------------------------------------- /src/Main/jkGob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkGob.c -------------------------------------------------------------------------------- /src/Main/jkGob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkGob.h -------------------------------------------------------------------------------- /src/Main/jkHud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHud.c -------------------------------------------------------------------------------- /src/Main/jkHud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHud.h -------------------------------------------------------------------------------- /src/Main/jkHudCameraView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHudCameraView.c -------------------------------------------------------------------------------- /src/Main/jkHudCameraView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHudCameraView.h -------------------------------------------------------------------------------- /src/Main/jkHudInv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHudInv.c -------------------------------------------------------------------------------- /src/Main/jkHudInv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHudInv.h -------------------------------------------------------------------------------- /src/Main/jkHudScope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHudScope.c -------------------------------------------------------------------------------- /src/Main/jkHudScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkHudScope.h -------------------------------------------------------------------------------- /src/Main/jkMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkMain.c -------------------------------------------------------------------------------- /src/Main/jkMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkMain.h -------------------------------------------------------------------------------- /src/Main/jkQuakeConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkQuakeConsole.c -------------------------------------------------------------------------------- /src/Main/jkQuakeConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkQuakeConsole.h -------------------------------------------------------------------------------- /src/Main/jkRes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkRes.c -------------------------------------------------------------------------------- /src/Main/jkRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkRes.h -------------------------------------------------------------------------------- /src/Main/jkSmack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkSmack.c -------------------------------------------------------------------------------- /src/Main/jkSmack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkSmack.h -------------------------------------------------------------------------------- /src/Main/jkStrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkStrings.c -------------------------------------------------------------------------------- /src/Main/jkStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/jkStrings.h -------------------------------------------------------------------------------- /src/Main/sithCommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/sithCommand.c -------------------------------------------------------------------------------- /src/Main/sithCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/sithCommand.h -------------------------------------------------------------------------------- /src/Main/sithCvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/sithCvar.c -------------------------------------------------------------------------------- /src/Main/sithCvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/sithCvar.h -------------------------------------------------------------------------------- /src/Main/sithMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/sithMain.c -------------------------------------------------------------------------------- /src/Main/sithMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/sithMain.h -------------------------------------------------------------------------------- /src/Main/smack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Main/smack.h -------------------------------------------------------------------------------- /src/Platform/Common/stdHttp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/Common/stdHttp.c -------------------------------------------------------------------------------- /src/Platform/Common/stdHttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/Common/stdHttp.h -------------------------------------------------------------------------------- /src/Platform/D3D/std3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/D3D/std3D.c -------------------------------------------------------------------------------- /src/Platform/GL/jkgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/GL/jkgm.cpp -------------------------------------------------------------------------------- /src/Platform/GL/jkgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/GL/jkgm.h -------------------------------------------------------------------------------- /src/Platform/GL/shader_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/GL/shader_utils.c -------------------------------------------------------------------------------- /src/Platform/GL/shader_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/GL/shader_utils.h -------------------------------------------------------------------------------- /src/Platform/GL/std3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/GL/std3D.c -------------------------------------------------------------------------------- /src/Platform/Posix/wuRegistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/Posix/wuRegistry.c -------------------------------------------------------------------------------- /src/Platform/SDL2/stdControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/SDL2/stdControl.c -------------------------------------------------------------------------------- /src/Platform/TWL/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/dlmalloc.c -------------------------------------------------------------------------------- /src/Platform/TWL/dlmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/dlmalloc.h -------------------------------------------------------------------------------- /src/Platform/TWL/jkGUIDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/jkGUIDisplay.c -------------------------------------------------------------------------------- /src/Platform/TWL/mpu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/mpu.s -------------------------------------------------------------------------------- /src/Platform/TWL/mpu_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/mpu_internal.h -------------------------------------------------------------------------------- /src/Platform/TWL/std3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/std3D.c -------------------------------------------------------------------------------- /src/Platform/TWL/stdControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/stdControl.c -------------------------------------------------------------------------------- /src/Platform/TWL/stdSound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/TWL/stdSound.c -------------------------------------------------------------------------------- /src/Platform/Win32/wuRegistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/Win32/wuRegistry.c -------------------------------------------------------------------------------- /src/Platform/macOS/SDL_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/macOS/SDL_fix.h -------------------------------------------------------------------------------- /src/Platform/macOS/SDL_fix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/macOS/SDL_fix.m -------------------------------------------------------------------------------- /src/Platform/std3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/std3D.h -------------------------------------------------------------------------------- /src/Platform/stdControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/stdControl.h -------------------------------------------------------------------------------- /src/Platform/wuRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Platform/wuRegistry.h -------------------------------------------------------------------------------- /src/Primitives/rdDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdDebug.c -------------------------------------------------------------------------------- /src/Primitives/rdDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdDebug.h -------------------------------------------------------------------------------- /src/Primitives/rdMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdMath.c -------------------------------------------------------------------------------- /src/Primitives/rdMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdMath.h -------------------------------------------------------------------------------- /src/Primitives/rdMatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdMatrix.c -------------------------------------------------------------------------------- /src/Primitives/rdMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdMatrix.h -------------------------------------------------------------------------------- /src/Primitives/rdModel3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdModel3.c -------------------------------------------------------------------------------- /src/Primitives/rdModel3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdModel3.h -------------------------------------------------------------------------------- /src/Primitives/rdParticle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdParticle.c -------------------------------------------------------------------------------- /src/Primitives/rdParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdParticle.h -------------------------------------------------------------------------------- /src/Primitives/rdPolyLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdPolyLine.c -------------------------------------------------------------------------------- /src/Primitives/rdPolyLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdPolyLine.h -------------------------------------------------------------------------------- /src/Primitives/rdPrimit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdPrimit2.c -------------------------------------------------------------------------------- /src/Primitives/rdPrimit2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdPrimit2.h -------------------------------------------------------------------------------- /src/Primitives/rdPrimit3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdPrimit3.c -------------------------------------------------------------------------------- /src/Primitives/rdPrimit3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdPrimit3.h -------------------------------------------------------------------------------- /src/Primitives/rdRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdRect.h -------------------------------------------------------------------------------- /src/Primitives/rdSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdSprite.c -------------------------------------------------------------------------------- /src/Primitives/rdSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdSprite.h -------------------------------------------------------------------------------- /src/Primitives/rdVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdVector.c -------------------------------------------------------------------------------- /src/Primitives/rdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Primitives/rdVector.h -------------------------------------------------------------------------------- /src/Raster/rdCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Raster/rdCache.c -------------------------------------------------------------------------------- /src/Raster/rdCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Raster/rdCache.h -------------------------------------------------------------------------------- /src/Raster/rdFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Raster/rdFace.c -------------------------------------------------------------------------------- /src/Raster/rdFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Raster/rdFace.h -------------------------------------------------------------------------------- /src/Raster/rdRaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Raster/rdRaster.c -------------------------------------------------------------------------------- /src/Raster/rdRaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Raster/rdRaster.h -------------------------------------------------------------------------------- /src/SDL2_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/SDL2_helper.h -------------------------------------------------------------------------------- /src/Tests/rle_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Tests/rle_test.c -------------------------------------------------------------------------------- /src/Win95/DirectX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/DirectX.c -------------------------------------------------------------------------------- /src/Win95/DirectX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/DirectX.h -------------------------------------------------------------------------------- /src/Win95/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Display.h -------------------------------------------------------------------------------- /src/Win95/Video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Video.c -------------------------------------------------------------------------------- /src/Win95/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Video.h -------------------------------------------------------------------------------- /src/Win95/WinIdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/WinIdk.c -------------------------------------------------------------------------------- /src/Win95/WinIdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/WinIdk.h -------------------------------------------------------------------------------- /src/Win95/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Window.c -------------------------------------------------------------------------------- /src/Win95/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Window.h -------------------------------------------------------------------------------- /src/Win95/Window_Twl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Window_Twl.c -------------------------------------------------------------------------------- /src/Win95/Windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Windows.c -------------------------------------------------------------------------------- /src/Win95/Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/Windows.h -------------------------------------------------------------------------------- /src/Win95/std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/std.c -------------------------------------------------------------------------------- /src/Win95/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/std.h -------------------------------------------------------------------------------- /src/Win95/stdComm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdComm.c -------------------------------------------------------------------------------- /src/Win95/stdComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdComm.h -------------------------------------------------------------------------------- /src/Win95/stdConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdConsole.c -------------------------------------------------------------------------------- /src/Win95/stdConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdConsole.h -------------------------------------------------------------------------------- /src/Win95/stdDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdDisplay.c -------------------------------------------------------------------------------- /src/Win95/stdDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdDisplay.h -------------------------------------------------------------------------------- /src/Win95/stdDisplay_Twl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdDisplay_Twl.c -------------------------------------------------------------------------------- /src/Win95/stdGdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdGdi.c -------------------------------------------------------------------------------- /src/Win95/stdGdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdGdi.h -------------------------------------------------------------------------------- /src/Win95/stdGob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdGob.c -------------------------------------------------------------------------------- /src/Win95/stdGob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdGob.h -------------------------------------------------------------------------------- /src/Win95/stdMci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdMci.c -------------------------------------------------------------------------------- /src/Win95/stdMci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdMci.h -------------------------------------------------------------------------------- /src/Win95/stdSound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdSound.c -------------------------------------------------------------------------------- /src/Win95/stdSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdSound.h -------------------------------------------------------------------------------- /src/Win95/stdVBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/Win95/stdVBuffer.h -------------------------------------------------------------------------------- /src/World/jkPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/jkPlayer.c -------------------------------------------------------------------------------- /src/World/jkPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/jkPlayer.h -------------------------------------------------------------------------------- /src/World/sithActor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithActor.c -------------------------------------------------------------------------------- /src/World/sithActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithActor.h -------------------------------------------------------------------------------- /src/World/sithArchLighting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithArchLighting.c -------------------------------------------------------------------------------- /src/World/sithArchLighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithArchLighting.h -------------------------------------------------------------------------------- /src/World/sithExplosion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithExplosion.c -------------------------------------------------------------------------------- /src/World/sithExplosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithExplosion.h -------------------------------------------------------------------------------- /src/World/sithItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithItem.c -------------------------------------------------------------------------------- /src/World/sithItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithItem.h -------------------------------------------------------------------------------- /src/World/sithMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithMap.c -------------------------------------------------------------------------------- /src/World/sithMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithMap.h -------------------------------------------------------------------------------- /src/World/sithMaterial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithMaterial.c -------------------------------------------------------------------------------- /src/World/sithMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithMaterial.h -------------------------------------------------------------------------------- /src/World/sithModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithModel.c -------------------------------------------------------------------------------- /src/World/sithModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithModel.h -------------------------------------------------------------------------------- /src/World/sithSector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSector.c -------------------------------------------------------------------------------- /src/World/sithSector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSector.h -------------------------------------------------------------------------------- /src/World/sithSoundClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSoundClass.c -------------------------------------------------------------------------------- /src/World/sithSoundClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSoundClass.h -------------------------------------------------------------------------------- /src/World/sithSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSprite.c -------------------------------------------------------------------------------- /src/World/sithSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSprite.h -------------------------------------------------------------------------------- /src/World/sithSurface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSurface.c -------------------------------------------------------------------------------- /src/World/sithSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithSurface.h -------------------------------------------------------------------------------- /src/World/sithTemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithTemplate.c -------------------------------------------------------------------------------- /src/World/sithTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithTemplate.h -------------------------------------------------------------------------------- /src/World/sithThing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithThing.c -------------------------------------------------------------------------------- /src/World/sithThing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithThing.h -------------------------------------------------------------------------------- /src/World/sithTrackThing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithTrackThing.c -------------------------------------------------------------------------------- /src/World/sithTrackThing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithTrackThing.h -------------------------------------------------------------------------------- /src/World/sithWeapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithWeapon.c -------------------------------------------------------------------------------- /src/World/sithWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithWeapon.h -------------------------------------------------------------------------------- /src/World/sithWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithWorld.c -------------------------------------------------------------------------------- /src/World/sithWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/World/sithWorld.h -------------------------------------------------------------------------------- /src/engine_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/engine_config.h -------------------------------------------------------------------------------- /src/external/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/Makefile -------------------------------------------------------------------------------- /src/external/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/Makefile.am -------------------------------------------------------------------------------- /src/external/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/Makefile.in -------------------------------------------------------------------------------- /src/external/curl/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/Makefile.inc -------------------------------------------------------------------------------- /src/external/curl/Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/Makefile.mk -------------------------------------------------------------------------------- /src/external/curl/altsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/altsvc.c -------------------------------------------------------------------------------- /src/external/curl/altsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/altsvc.h -------------------------------------------------------------------------------- /src/external/curl/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/amigaos.c -------------------------------------------------------------------------------- /src/external/curl/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/amigaos.h -------------------------------------------------------------------------------- /src/external/curl/arpa_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/arpa_telnet.h -------------------------------------------------------------------------------- /src/external/curl/asyn-ares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/asyn-ares.c -------------------------------------------------------------------------------- /src/external/curl/asyn-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/asyn-thread.c -------------------------------------------------------------------------------- /src/external/curl/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/asyn.h -------------------------------------------------------------------------------- /src/external/curl/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/base64.c -------------------------------------------------------------------------------- /src/external/curl/bufref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/bufref.c -------------------------------------------------------------------------------- /src/external/curl/bufref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/bufref.h -------------------------------------------------------------------------------- /src/external/curl/c-hyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/c-hyper.c -------------------------------------------------------------------------------- /src/external/curl/c-hyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/c-hyper.h -------------------------------------------------------------------------------- /src/external/curl/cf-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/cf-socket.c -------------------------------------------------------------------------------- /src/external/curl/cf-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/cf-socket.h -------------------------------------------------------------------------------- /src/external/curl/cfilters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/cfilters.c -------------------------------------------------------------------------------- /src/external/curl/cfilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/cfilters.h -------------------------------------------------------------------------------- /src/external/curl/config-dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/config-dos.h -------------------------------------------------------------------------------- /src/external/curl/config-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/config-mac.h -------------------------------------------------------------------------------- /src/external/curl/conncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/conncache.c -------------------------------------------------------------------------------- /src/external/curl/conncache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/conncache.h -------------------------------------------------------------------------------- /src/external/curl/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/connect.c -------------------------------------------------------------------------------- /src/external/curl/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/connect.h -------------------------------------------------------------------------------- /src/external/curl/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/cookie.c -------------------------------------------------------------------------------- /src/external/curl/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/cookie.h -------------------------------------------------------------------------------- /src/external/curl/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/Makefile -------------------------------------------------------------------------------- /src/external/curl/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/curl.h -------------------------------------------------------------------------------- /src/external/curl/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/easy.h -------------------------------------------------------------------------------- /src/external/curl/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/header.h -------------------------------------------------------------------------------- /src/external/curl/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/multi.h -------------------------------------------------------------------------------- /src/external/curl/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/system.h -------------------------------------------------------------------------------- /src/external/curl/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl/urlapi.h -------------------------------------------------------------------------------- /src/external/curl/curl_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_base64.h -------------------------------------------------------------------------------- /src/external/curl/curl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_config.h -------------------------------------------------------------------------------- /src/external/curl/curl_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_ctype.h -------------------------------------------------------------------------------- /src/external/curl/curl_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_des.c -------------------------------------------------------------------------------- /src/external/curl/curl_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_des.h -------------------------------------------------------------------------------- /src/external/curl/curl_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_endian.c -------------------------------------------------------------------------------- /src/external/curl/curl_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_endian.h -------------------------------------------------------------------------------- /src/external/curl/curl_gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_gssapi.c -------------------------------------------------------------------------------- /src/external/curl/curl_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_log.c -------------------------------------------------------------------------------- /src/external/curl/curl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_log.h -------------------------------------------------------------------------------- /src/external/curl/curl_md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_md4.h -------------------------------------------------------------------------------- /src/external/curl/curl_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curl_md5.h -------------------------------------------------------------------------------- /src/external/curl/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/curlx.h -------------------------------------------------------------------------------- /src/external/curl/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/dict.c -------------------------------------------------------------------------------- /src/external/curl/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/dict.h -------------------------------------------------------------------------------- /src/external/curl/doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/doh.c -------------------------------------------------------------------------------- /src/external/curl/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/doh.h -------------------------------------------------------------------------------- /src/external/curl/dynbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/dynbuf.c -------------------------------------------------------------------------------- /src/external/curl/dynbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/dynbuf.h -------------------------------------------------------------------------------- /src/external/curl/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/easy.c -------------------------------------------------------------------------------- /src/external/curl/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/easyif.h -------------------------------------------------------------------------------- /src/external/curl/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/escape.c -------------------------------------------------------------------------------- /src/external/curl/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/escape.h -------------------------------------------------------------------------------- /src/external/curl/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/file.c -------------------------------------------------------------------------------- /src/external/curl/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/file.h -------------------------------------------------------------------------------- /src/external/curl/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/fileinfo.c -------------------------------------------------------------------------------- /src/external/curl/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/fileinfo.h -------------------------------------------------------------------------------- /src/external/curl/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/fopen.c -------------------------------------------------------------------------------- /src/external/curl/fopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/fopen.h -------------------------------------------------------------------------------- /src/external/curl/formdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/formdata.c -------------------------------------------------------------------------------- /src/external/curl/formdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/formdata.h -------------------------------------------------------------------------------- /src/external/curl/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/ftp.c -------------------------------------------------------------------------------- /src/external/curl/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/ftp.h -------------------------------------------------------------------------------- /src/external/curl/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/getenv.c -------------------------------------------------------------------------------- /src/external/curl/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/getinfo.c -------------------------------------------------------------------------------- /src/external/curl/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/getinfo.h -------------------------------------------------------------------------------- /src/external/curl/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/gopher.c -------------------------------------------------------------------------------- /src/external/curl/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/gopher.h -------------------------------------------------------------------------------- /src/external/curl/h2h3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/h2h3.c -------------------------------------------------------------------------------- /src/external/curl/h2h3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/h2h3.h -------------------------------------------------------------------------------- /src/external/curl/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hash.c -------------------------------------------------------------------------------- /src/external/curl/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hash.h -------------------------------------------------------------------------------- /src/external/curl/headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/headers.c -------------------------------------------------------------------------------- /src/external/curl/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/headers.h -------------------------------------------------------------------------------- /src/external/curl/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hmac.c -------------------------------------------------------------------------------- /src/external/curl/hostasyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hostasyn.c -------------------------------------------------------------------------------- /src/external/curl/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hostip.c -------------------------------------------------------------------------------- /src/external/curl/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hostip.h -------------------------------------------------------------------------------- /src/external/curl/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hostip4.c -------------------------------------------------------------------------------- /src/external/curl/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hostip6.c -------------------------------------------------------------------------------- /src/external/curl/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hostsyn.c -------------------------------------------------------------------------------- /src/external/curl/hsts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hsts.c -------------------------------------------------------------------------------- /src/external/curl/hsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/hsts.h -------------------------------------------------------------------------------- /src/external/curl/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/http.c -------------------------------------------------------------------------------- /src/external/curl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/http.h -------------------------------------------------------------------------------- /src/external/curl/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/http2.c -------------------------------------------------------------------------------- /src/external/curl/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/http2.h -------------------------------------------------------------------------------- /src/external/curl/idn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/idn.c -------------------------------------------------------------------------------- /src/external/curl/idn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/idn.h -------------------------------------------------------------------------------- /src/external/curl/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/if2ip.c -------------------------------------------------------------------------------- /src/external/curl/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/if2ip.h -------------------------------------------------------------------------------- /src/external/curl/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/imap.c -------------------------------------------------------------------------------- /src/external/curl/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/imap.h -------------------------------------------------------------------------------- /src/external/curl/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/krb5.c -------------------------------------------------------------------------------- /src/external/curl/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/ldap.c -------------------------------------------------------------------------------- /src/external/curl/libcurl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/libcurl.rc -------------------------------------------------------------------------------- /src/external/curl/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/llist.c -------------------------------------------------------------------------------- /src/external/curl/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/llist.h -------------------------------------------------------------------------------- /src/external/curl/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/md4.c -------------------------------------------------------------------------------- /src/external/curl/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/md5.c -------------------------------------------------------------------------------- /src/external/curl/memdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/memdebug.c -------------------------------------------------------------------------------- /src/external/curl/memdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/memdebug.h -------------------------------------------------------------------------------- /src/external/curl/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/mime.c -------------------------------------------------------------------------------- /src/external/curl/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/mime.h -------------------------------------------------------------------------------- /src/external/curl/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/mprintf.c -------------------------------------------------------------------------------- /src/external/curl/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/mqtt.c -------------------------------------------------------------------------------- /src/external/curl/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/mqtt.h -------------------------------------------------------------------------------- /src/external/curl/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/multi.c -------------------------------------------------------------------------------- /src/external/curl/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/multiif.h -------------------------------------------------------------------------------- /src/external/curl/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/netrc.c -------------------------------------------------------------------------------- /src/external/curl/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/netrc.h -------------------------------------------------------------------------------- /src/external/curl/nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/nonblock.c -------------------------------------------------------------------------------- /src/external/curl/nonblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/nonblock.h -------------------------------------------------------------------------------- /src/external/curl/noproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/noproxy.c -------------------------------------------------------------------------------- /src/external/curl/noproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/noproxy.h -------------------------------------------------------------------------------- /src/external/curl/openldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/openldap.c -------------------------------------------------------------------------------- /src/external/curl/pingpong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/pingpong.c -------------------------------------------------------------------------------- /src/external/curl/pingpong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/pingpong.h -------------------------------------------------------------------------------- /src/external/curl/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/pop3.c -------------------------------------------------------------------------------- /src/external/curl/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/pop3.h -------------------------------------------------------------------------------- /src/external/curl/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/progress.c -------------------------------------------------------------------------------- /src/external/curl/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/progress.h -------------------------------------------------------------------------------- /src/external/curl/psl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/psl.c -------------------------------------------------------------------------------- /src/external/curl/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/psl.h -------------------------------------------------------------------------------- /src/external/curl/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/rand.c -------------------------------------------------------------------------------- /src/external/curl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/rand.h -------------------------------------------------------------------------------- /src/external/curl/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/rename.c -------------------------------------------------------------------------------- /src/external/curl/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/rename.h -------------------------------------------------------------------------------- /src/external/curl/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/rtsp.c -------------------------------------------------------------------------------- /src/external/curl/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/rtsp.h -------------------------------------------------------------------------------- /src/external/curl/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/select.c -------------------------------------------------------------------------------- /src/external/curl/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/select.h -------------------------------------------------------------------------------- /src/external/curl/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/sendf.c -------------------------------------------------------------------------------- /src/external/curl/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/sendf.h -------------------------------------------------------------------------------- /src/external/curl/setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/setopt.c -------------------------------------------------------------------------------- /src/external/curl/setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/setopt.h -------------------------------------------------------------------------------- /src/external/curl/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/sha256.c -------------------------------------------------------------------------------- /src/external/curl/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/share.c -------------------------------------------------------------------------------- /src/external/curl/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/share.h -------------------------------------------------------------------------------- /src/external/curl/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/sigpipe.h -------------------------------------------------------------------------------- /src/external/curl/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/slist.c -------------------------------------------------------------------------------- /src/external/curl/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/slist.h -------------------------------------------------------------------------------- /src/external/curl/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/smb.c -------------------------------------------------------------------------------- /src/external/curl/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/smb.h -------------------------------------------------------------------------------- /src/external/curl/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/smtp.c -------------------------------------------------------------------------------- /src/external/curl/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/smtp.h -------------------------------------------------------------------------------- /src/external/curl/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/sockaddr.h -------------------------------------------------------------------------------- /src/external/curl/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/socks.c -------------------------------------------------------------------------------- /src/external/curl/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/socks.h -------------------------------------------------------------------------------- /src/external/curl/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/splay.c -------------------------------------------------------------------------------- /src/external/curl/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/splay.h -------------------------------------------------------------------------------- /src/external/curl/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for lib/curl_config.h 2 | -------------------------------------------------------------------------------- /src/external/curl/strcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strcase.c -------------------------------------------------------------------------------- /src/external/curl/strcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strcase.h -------------------------------------------------------------------------------- /src/external/curl/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strdup.c -------------------------------------------------------------------------------- /src/external/curl/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strdup.h -------------------------------------------------------------------------------- /src/external/curl/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strerror.c -------------------------------------------------------------------------------- /src/external/curl/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strerror.h -------------------------------------------------------------------------------- /src/external/curl/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strtok.c -------------------------------------------------------------------------------- /src/external/curl/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/strtok.h -------------------------------------------------------------------------------- /src/external/curl/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/telnet.c -------------------------------------------------------------------------------- /src/external/curl/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/telnet.h -------------------------------------------------------------------------------- /src/external/curl/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/tftp.c -------------------------------------------------------------------------------- /src/external/curl/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/tftp.h -------------------------------------------------------------------------------- /src/external/curl/timediff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/timediff.c -------------------------------------------------------------------------------- /src/external/curl/timediff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/timediff.h -------------------------------------------------------------------------------- /src/external/curl/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/timeval.c -------------------------------------------------------------------------------- /src/external/curl/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/timeval.h -------------------------------------------------------------------------------- /src/external/curl/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/transfer.c -------------------------------------------------------------------------------- /src/external/curl/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/transfer.h -------------------------------------------------------------------------------- /src/external/curl/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/url.c -------------------------------------------------------------------------------- /src/external/curl/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/url.h -------------------------------------------------------------------------------- /src/external/curl/urlapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/urlapi.c -------------------------------------------------------------------------------- /src/external/curl/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/urldata.h -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-cleartext.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-cram.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-digest.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-digest_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-gsasl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-krb5_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-krb5_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-ntlm_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-oauth2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-spnego_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-spnego_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurl_la-vauth.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-cleartext.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-cram.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-digest.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-digest_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-gsasl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-krb5_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-krb5_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-ntlm_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-oauth2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-spnego_gssapi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-spnego_sspi.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vauth/.deps/libcurlu_la-vauth.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/version.c -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurl_la-curl_msh3.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurl_la-curl_ngtcp2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurl_la-curl_quiche.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurl_la-vquic.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurlu_la-curl_msh3.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurlu_la-curl_ngtcp2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurlu_la-curl_quiche.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vquic/.deps/libcurlu_la-vquic.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/.deps/libcurl_la-libssh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/.deps/libcurl_la-libssh2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/.deps/libcurl_la-wolfssh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/.deps/libcurlu_la-libssh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/.deps/libcurlu_la-libssh2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/.deps/libcurlu_la-wolfssh.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vssh/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/vssh/ssh.h -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-bearssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-gskit.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-gtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-hostcheck.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-keylog.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-mbedtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-mbedtls_threadlock.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-nss.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-openssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-rustls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-schannel.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-schannel_verify.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-sectransp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-vtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-wolfssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurl_la-x509asn1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-bearssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-gskit.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-gtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-hostcheck.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-keylog.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-mbedtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-mbedtls_threadlock.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-nss.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-openssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-rustls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-schannel.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-schannel_verify.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-sectransp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-vtls.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-wolfssl.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/.deps/libcurlu_la-x509asn1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/external/curl/vtls/nss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/vtls/nss.c -------------------------------------------------------------------------------- /src/external/curl/warnless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/warnless.c -------------------------------------------------------------------------------- /src/external/curl/warnless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/warnless.h -------------------------------------------------------------------------------- /src/external/curl/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/ws.c -------------------------------------------------------------------------------- /src/external/curl/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/curl/ws.h -------------------------------------------------------------------------------- /src/external/mbedtls/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/aes.c -------------------------------------------------------------------------------- /src/external/mbedtls/aesce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/aesce.c -------------------------------------------------------------------------------- /src/external/mbedtls/aesce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/aesce.h -------------------------------------------------------------------------------- /src/external/mbedtls/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/aesni.c -------------------------------------------------------------------------------- /src/external/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/aesni.h -------------------------------------------------------------------------------- /src/external/mbedtls/aria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/aria.c -------------------------------------------------------------------------------- /src/external/mbedtls/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/ccm.c -------------------------------------------------------------------------------- /src/external/mbedtls/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/cmac.c -------------------------------------------------------------------------------- /src/external/mbedtls/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/debug.c -------------------------------------------------------------------------------- /src/external/mbedtls/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/des.c -------------------------------------------------------------------------------- /src/external/mbedtls/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/dhm.c -------------------------------------------------------------------------------- /src/external/mbedtls/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/ecdh.c -------------------------------------------------------------------------------- /src/external/mbedtls/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/ecdsa.c -------------------------------------------------------------------------------- /src/external/mbedtls/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/ecp.c -------------------------------------------------------------------------------- /src/external/mbedtls/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/error.c -------------------------------------------------------------------------------- /src/external/mbedtls/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/gcm.c -------------------------------------------------------------------------------- /src/external/mbedtls/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/hkdf.c -------------------------------------------------------------------------------- /src/external/mbedtls/lmots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/lmots.h -------------------------------------------------------------------------------- /src/external/mbedtls/lms.c-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/lms.c- -------------------------------------------------------------------------------- /src/external/mbedtls/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/md.c -------------------------------------------------------------------------------- /src/external/mbedtls/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/md5.c -------------------------------------------------------------------------------- /src/external/mbedtls/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/oid.c -------------------------------------------------------------------------------- /src/external/mbedtls/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/pem.c -------------------------------------------------------------------------------- /src/external/mbedtls/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/pk.c -------------------------------------------------------------------------------- /src/external/mbedtls/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/pkcs5.c -------------------------------------------------------------------------------- /src/external/mbedtls/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/pkcs7.c -------------------------------------------------------------------------------- /src/external/mbedtls/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/rsa.c -------------------------------------------------------------------------------- /src/external/mbedtls/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/sha1.c -------------------------------------------------------------------------------- /src/external/mbedtls/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/external/mbedtls/x509.c -------------------------------------------------------------------------------- /src/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/fixed.h -------------------------------------------------------------------------------- /src/globals.c.cog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/globals.c.cog -------------------------------------------------------------------------------- /src/globals.h.cog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/globals.h.cog -------------------------------------------------------------------------------- /src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/hook.c -------------------------------------------------------------------------------- /src/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/hook.h -------------------------------------------------------------------------------- /src/jk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/jk.c -------------------------------------------------------------------------------- /src/jk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/jk.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/main_globals.c -------------------------------------------------------------------------------- /src/stdPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/stdPlatform.c -------------------------------------------------------------------------------- /src/stdPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/stdPlatform.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/types.h -------------------------------------------------------------------------------- /src/types_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/types_enums.h -------------------------------------------------------------------------------- /src/types_win_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/types_win_enums.h -------------------------------------------------------------------------------- /src/unusedWontImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/unusedWontImpl.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/version.c -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/version.h -------------------------------------------------------------------------------- /src/wprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/wprintf.c -------------------------------------------------------------------------------- /src/wprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/src/wprintf.h -------------------------------------------------------------------------------- /symbols.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/symbols.syms -------------------------------------------------------------------------------- /symbols_static.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/symbols_static.sym -------------------------------------------------------------------------------- /update-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/update-readme.sh -------------------------------------------------------------------------------- /wontimpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyquagsire23/OpenJKDF2/HEAD/wontimpl.txt --------------------------------------------------------------------------------