├── .appveyor.yml ├── .bandit ├── .codacy.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .license_index.txt ├── CHANGELOG.md ├── LICENSE ├── README.md ├── THIRD_PARTY_NOTICES.md ├── VERSION ├── dotnet_component_interface ├── ComponentInterfaceVersionAttribute.cs ├── IComponent.cs ├── IConfigVar.cs ├── IConsole.cs ├── IControls.cs ├── IDynamicServicesManager.cs ├── IFileInfo.cs ├── IMainMenu.cs ├── IMetadbHandle.cs ├── IPlaybackCallbacks.cs ├── IPlaybackControls.cs ├── IPreferencesPage.cs ├── IStaticServicesManager.cs ├── ITitleFormat.cs ├── IUtils.cs ├── Properties │ └── launchSettings.json ├── RequiresInitializationAttribute.cs └── dotnet_component_interface.csproj ├── dotnet_test ├── Form1.cs ├── Form1.resx ├── Properties │ └── launchSettings.json ├── dotnet_test.csproj └── test.cs ├── foo_dotnet_component_host ├── .clang-format ├── acfu │ ├── acfu_github.h │ ├── acfu_registration.cpp │ ├── acfu_registration.h │ ├── semantic_version.cpp │ └── semantic_version.h ├── component_defines.h ├── component_guids.h ├── component_main.cpp ├── component_paths.cpp ├── component_paths.h ├── convert │ ├── to_native.cpp │ ├── to_native.h │ ├── to_net.cpp │ └── to_net.h ├── fb2k │ ├── component_registration.cpp │ ├── component_registration.h │ ├── init_quit.cpp │ ├── main.cpp │ ├── main_menu.cpp │ ├── main_menu.h │ ├── play_callback.cpp │ ├── play_callback.h │ ├── preferences_pages.cpp │ └── preferences_pages.h ├── foo_dotnet_component_host.filters ├── foo_dotnet_component_host.vcxproj ├── foo_dotnet_component_host.vcxproj.filters ├── host │ ├── component.h │ ├── delayed_installation.cpp │ ├── delayed_installation.h │ ├── fb2k_controls.cpp │ ├── fb2k_controls.h │ ├── fb2k_services.cpp │ ├── fb2k_services.h │ ├── fb2k_utils.cpp │ ├── fb2k_utils.h │ ├── host.cpp │ └── host.h ├── loader │ ├── assembly_loader.cpp │ ├── assembly_loader.h │ ├── component_loader.cpp │ └── component_loader.h ├── net_objects │ ├── fb_config_var.cpp │ ├── fb_config_var.h │ ├── fb_console.cpp │ ├── fb_console.h │ ├── fb_file_info.cpp │ ├── fb_file_info.h │ ├── fb_main_menu.cpp │ ├── fb_main_menu.h │ ├── fb_metadb_handle.cpp │ ├── fb_metadb_handle.h │ ├── fb_play_callback.cpp │ ├── fb_play_callback.h │ ├── fb_play_control.cpp │ ├── fb_play_control.h │ ├── fb_preferences_page_callback.cpp │ ├── fb_preferences_page_callback.h │ ├── fb_title_format.cpp │ ├── fb_title_format.h │ └── impl │ │ └── enumerable_impl.h ├── net_utils │ └── exception_generator.h ├── packages.config ├── resources │ ├── foo_dotnet_component_host.rc │ ├── resource.h │ └── version.rc ├── stdafx.cpp ├── stdafx.h ├── ui │ ├── ui_preferences.cpp │ ├── ui_preferences.h │ ├── ui_preferences_form.cpp │ ├── ui_preferences_form.h │ └── ui_preferences_form.resx └── utils │ ├── delayed_log.cpp │ ├── delayed_log.h │ ├── menu_helpers.cpp │ └── menu_helpers.h ├── licenses ├── JSON for Modern C++.txt ├── PFC.txt ├── fmt.txt ├── foobar2000 SDK.txt └── range-v3.txt ├── props └── submodules │ ├── fb2k_utils.props │ └── submodules.props ├── scripts ├── README.md ├── call_wrapper.py ├── download_submodules.py ├── generate_package_info.py ├── pack_component.py ├── patch_submodules.py ├── patches │ ├── foobar2000.patch │ └── pfc.patch ├── publish_interface_package.py ├── setup.py └── update_gh_pages.py └── workspaces └── foo_dotnet_component_host.sln /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.bandit -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.gitmodules -------------------------------------------------------------------------------- /.license_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/.license_index.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/THIRD_PARTY_NOTICES.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1-dev 2 | -------------------------------------------------------------------------------- /dotnet_component_interface/ComponentInterfaceVersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/ComponentInterfaceVersionAttribute.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IComponent.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IConfigVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IConfigVar.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IConsole.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IControls.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IDynamicServicesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IDynamicServicesManager.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IFileInfo.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IMainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IMainMenu.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IMetadbHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IMetadbHandle.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IPlaybackCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IPlaybackCallbacks.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IPlaybackControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IPlaybackControls.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IPreferencesPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IPreferencesPage.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IStaticServicesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IStaticServicesManager.cs -------------------------------------------------------------------------------- /dotnet_component_interface/ITitleFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/ITitleFormat.cs -------------------------------------------------------------------------------- /dotnet_component_interface/IUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/IUtils.cs -------------------------------------------------------------------------------- /dotnet_component_interface/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/Properties/launchSettings.json -------------------------------------------------------------------------------- /dotnet_component_interface/RequiresInitializationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/RequiresInitializationAttribute.cs -------------------------------------------------------------------------------- /dotnet_component_interface/dotnet_component_interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_component_interface/dotnet_component_interface.csproj -------------------------------------------------------------------------------- /dotnet_test/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_test/Form1.cs -------------------------------------------------------------------------------- /dotnet_test/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_test/Form1.resx -------------------------------------------------------------------------------- /dotnet_test/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_test/Properties/launchSettings.json -------------------------------------------------------------------------------- /dotnet_test/dotnet_test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_test/dotnet_test.csproj -------------------------------------------------------------------------------- /dotnet_test/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/dotnet_test/test.cs -------------------------------------------------------------------------------- /foo_dotnet_component_host/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/.clang-format -------------------------------------------------------------------------------- /foo_dotnet_component_host/acfu/acfu_github.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/acfu/acfu_github.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/acfu/acfu_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/acfu/acfu_registration.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/acfu/acfu_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/acfu/acfu_registration.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/acfu/semantic_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/acfu/semantic_version.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/acfu/semantic_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/acfu/semantic_version.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/component_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/component_defines.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/component_guids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/component_guids.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/component_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/component_main.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/component_paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/component_paths.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/component_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/component_paths.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/convert/to_native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/convert/to_native.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/convert/to_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/convert/to_native.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/convert/to_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/convert/to_net.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/convert/to_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/convert/to_net.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/component_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/component_registration.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/component_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/component_registration.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/init_quit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/init_quit.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/main.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/main_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/main_menu.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/main_menu.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/play_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/play_callback.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/play_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/play_callback.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/preferences_pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/preferences_pages.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/fb2k/preferences_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/fb2k/preferences_pages.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/foo_dotnet_component_host.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/foo_dotnet_component_host.filters -------------------------------------------------------------------------------- /foo_dotnet_component_host/foo_dotnet_component_host.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/foo_dotnet_component_host.vcxproj -------------------------------------------------------------------------------- /foo_dotnet_component_host/foo_dotnet_component_host.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/foo_dotnet_component_host.vcxproj.filters -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/component.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/delayed_installation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/delayed_installation.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/delayed_installation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/delayed_installation.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/fb2k_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/fb2k_controls.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/fb2k_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/fb2k_controls.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/fb2k_services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/fb2k_services.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/fb2k_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/fb2k_services.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/fb2k_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/fb2k_utils.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/fb2k_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/fb2k_utils.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/host.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/host/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/host/host.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/loader/assembly_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/loader/assembly_loader.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/loader/assembly_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/loader/assembly_loader.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/loader/component_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/loader/component_loader.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/loader/component_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/loader/component_loader.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_config_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_config_var.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_config_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_config_var.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_console.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_console.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_file_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_file_info.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_file_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_file_info.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_main_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_main_menu.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_main_menu.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_metadb_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_metadb_handle.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_metadb_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_metadb_handle.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_play_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_play_callback.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_play_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_play_callback.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_play_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_play_control.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_play_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_play_control.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_preferences_page_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_preferences_page_callback.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_preferences_page_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_preferences_page_callback.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_title_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_title_format.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/fb_title_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/fb_title_format.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_objects/impl/enumerable_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_objects/impl/enumerable_impl.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/net_utils/exception_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/net_utils/exception_generator.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/packages.config -------------------------------------------------------------------------------- /foo_dotnet_component_host/resources/foo_dotnet_component_host.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/resources/foo_dotnet_component_host.rc -------------------------------------------------------------------------------- /foo_dotnet_component_host/resources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/resources/resource.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/resources/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/resources/version.rc -------------------------------------------------------------------------------- /foo_dotnet_component_host/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /foo_dotnet_component_host/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/stdafx.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/ui/ui_preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/ui/ui_preferences.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/ui/ui_preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/ui/ui_preferences.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/ui/ui_preferences_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/ui/ui_preferences_form.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/ui/ui_preferences_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/ui/ui_preferences_form.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/ui/ui_preferences_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/ui/ui_preferences_form.resx -------------------------------------------------------------------------------- /foo_dotnet_component_host/utils/delayed_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/utils/delayed_log.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/utils/delayed_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/utils/delayed_log.h -------------------------------------------------------------------------------- /foo_dotnet_component_host/utils/menu_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/utils/menu_helpers.cpp -------------------------------------------------------------------------------- /foo_dotnet_component_host/utils/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/foo_dotnet_component_host/utils/menu_helpers.h -------------------------------------------------------------------------------- /licenses/JSON for Modern C++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/licenses/JSON for Modern C++.txt -------------------------------------------------------------------------------- /licenses/PFC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/licenses/PFC.txt -------------------------------------------------------------------------------- /licenses/fmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/licenses/fmt.txt -------------------------------------------------------------------------------- /licenses/foobar2000 SDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/licenses/foobar2000 SDK.txt -------------------------------------------------------------------------------- /licenses/range-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/licenses/range-v3.txt -------------------------------------------------------------------------------- /props/submodules/fb2k_utils.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/props/submodules/fb2k_utils.props -------------------------------------------------------------------------------- /props/submodules/submodules.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/props/submodules/submodules.props -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/call_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/call_wrapper.py -------------------------------------------------------------------------------- /scripts/download_submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/download_submodules.py -------------------------------------------------------------------------------- /scripts/generate_package_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/generate_package_info.py -------------------------------------------------------------------------------- /scripts/pack_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/pack_component.py -------------------------------------------------------------------------------- /scripts/patch_submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/patch_submodules.py -------------------------------------------------------------------------------- /scripts/patches/foobar2000.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/patches/foobar2000.patch -------------------------------------------------------------------------------- /scripts/patches/pfc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/patches/pfc.patch -------------------------------------------------------------------------------- /scripts/publish_interface_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/publish_interface_package.py -------------------------------------------------------------------------------- /scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/setup.py -------------------------------------------------------------------------------- /scripts/update_gh_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/scripts/update_gh_pages.py -------------------------------------------------------------------------------- /workspaces/foo_dotnet_component_host.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheQwertiest/foo_dotnet_component_host/HEAD/workspaces/foo_dotnet_component_host.sln --------------------------------------------------------------------------------