├── .gitignore ├── .gitmodules ├── 3gpp ├── interf_dec.c ├── interf_dec.h ├── interf_rom.h ├── rom_dec.h ├── sp_dec.c ├── sp_dec.h └── typedef.h ├── LICENSE ├── README.md ├── foo_amr.sln ├── foo_amr.suo ├── foo_amr ├── foo_amr.vcproj ├── foo_amr.vcxproj ├── foo_amr.vcxproj.filters ├── foo_input_amr.cpp ├── foo_input_amr.rc └── resource.h ├── foo_sdk ├── foobar2000 │ ├── ATLHelpers │ │ ├── ATLHelpers.h │ │ ├── ATLHelpersLean.h │ │ ├── AutoComplete.cpp │ │ ├── AutoComplete.h │ │ ├── BumpableElem.h │ │ ├── CButtonLite.h │ │ ├── CDialogResizeHelper.cpp │ │ ├── CDialogResizeHelper.h │ │ ├── CEditWithButtons.cpp │ │ ├── CEditWithButtons.h │ │ ├── CFlashWindow.h │ │ ├── CIconOverlayWindow.h │ │ ├── CMiddleDragImpl.h │ │ ├── Controls.h │ │ ├── GDIUtils.h │ │ ├── WTL-PP.h │ │ ├── WindowPositionUtils.h │ │ ├── foobar2000_ATL_helpers.vcxproj │ │ ├── foobar2000_ATL_helpers.vcxproj.filters │ │ ├── inplace_edit.cpp │ │ ├── inplace_edit.h │ │ ├── inplace_edit_v2.cpp │ │ ├── inplace_edit_v2.h │ │ ├── misc.cpp │ │ ├── misc.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── ui_element_helpers.cpp │ │ └── ui_element_helpers.h │ ├── SDK │ │ ├── abort_callback.cpp │ │ ├── abort_callback.h │ │ ├── advconfig.cpp │ │ ├── advconfig.h │ │ ├── album_art.cpp │ │ ├── album_art.h │ │ ├── album_art_helpers.h │ │ ├── app_close_blocker.cpp │ │ ├── app_close_blocker.h │ │ ├── audio_chunk.cpp │ │ ├── audio_chunk.h │ │ ├── audio_chunk_channel_config.cpp │ │ ├── audio_chunk_impl.h │ │ ├── audio_postprocessor.h │ │ ├── autoplaylist.h │ │ ├── cfg_var.cpp │ │ ├── cfg_var.h │ │ ├── chapterizer.cpp │ │ ├── chapterizer.h │ │ ├── commandline.cpp │ │ ├── commandline.h │ │ ├── commonObjects.h │ │ ├── completion_notify.cpp │ │ ├── completion_notify.h │ │ ├── component.h │ │ ├── component_client.h │ │ ├── components_menu.h │ │ ├── componentversion.cpp │ │ ├── componentversion.h │ │ ├── config_io_callback.cpp │ │ ├── config_io_callback.h │ │ ├── config_object.cpp │ │ ├── config_object.h │ │ ├── config_object_impl.h │ │ ├── console.cpp │ │ ├── console.h │ │ ├── contextmenu.h │ │ ├── contextmenu_manager.h │ │ ├── core_api.h │ │ ├── coreversion.h │ │ ├── decode_postprocessor.h │ │ ├── dsp.cpp │ │ ├── dsp.h │ │ ├── dsp_manager.cpp │ │ ├── dsp_manager.h │ │ ├── event_logger.h │ │ ├── exceptions.h │ │ ├── file_cached_impl.cpp │ │ ├── file_format_sanitizer.h │ │ ├── file_info.cpp │ │ ├── file_info.h │ │ ├── file_info_impl.cpp │ │ ├── file_info_impl.h │ │ ├── file_info_merge.cpp │ │ ├── file_operation_callback.cpp │ │ ├── file_operation_callback.h │ │ ├── filesystem.cpp │ │ ├── filesystem.h │ │ ├── filesystem_helper.cpp │ │ ├── filesystem_helper.h │ │ ├── filesystem_transacted.h │ │ ├── foobar2000-dsp.h │ │ ├── foobar2000-pfc.h │ │ ├── foobar2000-winver.h │ │ ├── foobar2000.h │ │ ├── foobar2000_SDK.vcxproj │ │ ├── foobar2000_SDK.vcxproj.filters │ │ ├── genrand.h │ │ ├── guids.cpp │ │ ├── hasher_md5.cpp │ │ ├── hasher_md5.h │ │ ├── http_client.h │ │ ├── icon_remap.h │ │ ├── info_lookup_handler.h │ │ ├── initquit.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── input_file_type.cpp │ │ ├── input_file_type.h │ │ ├── input_impl.h │ │ ├── library_manager.h │ │ ├── link_resolver.cpp │ │ ├── link_resolver.h │ │ ├── main_thread_callback.cpp │ │ ├── main_thread_callback.h │ │ ├── mainmenu.cpp │ │ ├── mem_block_container.cpp │ │ ├── mem_block_container.h │ │ ├── menu.h │ │ ├── menu_helpers.cpp │ │ ├── menu_helpers.h │ │ ├── menu_item.cpp │ │ ├── menu_manager.cpp │ │ ├── message_loop.h │ │ ├── metadb.cpp │ │ ├── metadb.h │ │ ├── metadb_handle.cpp │ │ ├── metadb_handle.h │ │ ├── metadb_handle_list.cpp │ │ ├── modeless_dialog.h │ │ ├── ole_interaction.h │ │ ├── output.cpp │ │ ├── output.h │ │ ├── packet_decoder.cpp │ │ ├── packet_decoder.h │ │ ├── play_callback.h │ │ ├── playable_location.cpp │ │ ├── playable_location.h │ │ ├── playback_control.cpp │ │ ├── playback_control.h │ │ ├── playback_stream_capture.h │ │ ├── playlist.cpp │ │ ├── playlist.h │ │ ├── playlist_loader.cpp │ │ ├── playlist_loader.h │ │ ├── popup_message.cpp │ │ ├── popup_message.h │ │ ├── preferences_page.cpp │ │ ├── preferences_page.h │ │ ├── progress_meter.h │ │ ├── replaygain.cpp │ │ ├── replaygain.h │ │ ├── replaygain_info.cpp │ │ ├── replaygain_scanner.h │ │ ├── resampler.h │ │ ├── search_tools.cpp │ │ ├── search_tools.h │ │ ├── service.cpp │ │ ├── service.h │ │ ├── service_by_guid.h │ │ ├── service_factory.h │ │ ├── service_impl.h │ │ ├── shortcut_actions.h │ │ ├── stdafx.cpp │ │ ├── system_time_keeper.h │ │ ├── tag_processor.cpp │ │ ├── tag_processor.h │ │ ├── tag_processor_id3v2.cpp │ │ ├── threaded_process.cpp │ │ ├── threaded_process.h │ │ ├── titleformat.cpp │ │ ├── titleformat.h │ │ ├── track_property.h │ │ ├── ui.cpp │ │ ├── ui.h │ │ ├── ui_edit_context.h │ │ ├── ui_element.cpp │ │ ├── ui_element.h │ │ ├── unpack.h │ │ ├── utility.cpp │ │ └── vis.h │ ├── foo_input_validator │ │ ├── foo_input_validator.dll │ │ └── readme.txt │ ├── foo_sample │ │ ├── PCH.cpp │ │ ├── contextmenu.cpp │ │ ├── decode.cpp │ │ ├── dsp.cpp │ │ ├── foo_sample.rc │ │ ├── foo_sample.sln │ │ ├── foo_sample.vcxproj │ │ ├── foo_sample.vcxproj.filters │ │ ├── initquit.cpp │ │ ├── input_raw.cpp │ │ ├── main.cpp │ │ ├── mainmenu.cpp │ │ ├── playback_state.cpp │ │ ├── preferences.cpp │ │ ├── rating.cpp │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── stdafx.h │ │ ├── ui_element.cpp │ │ └── ui_element_dialog.cpp │ ├── foobar2000_component_client │ │ ├── component_client.cpp │ │ └── foobar2000_component_client.vcxproj │ ├── helpers │ │ ├── COM_utils.h │ │ ├── CPowerRequest.cpp │ │ ├── CPowerRequest.h │ │ ├── CPropVariant.h │ │ ├── CSingleThreadWrapper.h │ │ ├── CallForwarder.h │ │ ├── CmdThread.h │ │ ├── IDataObjectUtils.cpp │ │ ├── IDataObjectUtils.h │ │ ├── ProcessUtils.h │ │ ├── ProfileCache.h │ │ ├── SmartStrStr.cpp │ │ ├── SmartStrStr.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── ThreadUtils.cpp │ │ ├── ThreadUtils.h │ │ ├── TypeFind.h │ │ ├── VisUtils.cpp │ │ ├── VisUtils.h │ │ ├── advconfig_runtime.h │ │ ├── album_art_helpers.h │ │ ├── bitreader_helper.h │ │ ├── cfg_guidlist.h │ │ ├── clipboard.cpp │ │ ├── clipboard.h │ │ ├── create_directory_helper.cpp │ │ ├── create_directory_helper.h │ │ ├── cue_creator.cpp │ │ ├── cue_creator.h │ │ ├── cue_parser.cpp │ │ ├── cue_parser.h │ │ ├── cue_parser_embedding.cpp │ │ ├── cuesheet_index_list.cpp │ │ ├── cuesheet_index_list.h │ │ ├── dialog_resize_helper.cpp │ │ ├── dialog_resize_helper.h │ │ ├── dropdown_helper.cpp │ │ ├── dropdown_helper.h │ │ ├── duration_counter.h │ │ ├── dynamic_bitrate_helper.cpp │ │ ├── dynamic_bitrate_helper.h │ │ ├── fb2k_threads.h │ │ ├── fb2k_wfx.h │ │ ├── fileReadAhead.h │ │ ├── file_cached.h │ │ ├── file_info_const_impl.cpp │ │ ├── file_info_const_impl.h │ │ ├── file_list_helper.cpp │ │ ├── file_list_helper.h │ │ ├── file_move_helper.cpp │ │ ├── file_move_helper.h │ │ ├── file_win32_wrapper.cpp │ │ ├── file_win32_wrapper.h │ │ ├── filetimetools.cpp │ │ ├── filetimetools.h │ │ ├── foobar2000_sdk_helpers.vcxproj │ │ ├── foobar2000_sdk_helpers.vcxproj.filters │ │ ├── fullFileBuffer.h │ │ ├── gdiplus_helpers.h │ │ ├── helpers.h │ │ ├── icon_remapping_wildcard.h │ │ ├── input_fix_seeking.h │ │ ├── input_helpers.cpp │ │ ├── input_helpers.h │ │ ├── input_stream_info_reader.h │ │ ├── listview_helper.cpp │ │ ├── listview_helper.h │ │ ├── meta_table_builder.h │ │ ├── metadb_io_hintlist.h │ │ ├── mp3_utils.cpp │ │ ├── mp3_utils.h │ │ ├── packet_decoder_aac_common.cpp │ │ ├── packet_decoder_aac_common.h │ │ ├── packet_decoder_mp3_common.cpp │ │ ├── packet_decoder_mp3_common.h │ │ ├── playlist_position_reference_tracker.h │ │ ├── reader_pretend_nonseekable.h │ │ ├── readers.cpp │ │ ├── readers.h │ │ ├── rethrow.h │ │ ├── seekabilizer.cpp │ │ ├── seekabilizer.h │ │ ├── stream_buffer_helper.cpp │ │ ├── stream_buffer_helper.h │ │ ├── tag_write_callback_impl.h │ │ ├── text_file_loader.cpp │ │ ├── text_file_loader.h │ │ ├── win32_dialog.cpp │ │ ├── win32_dialog.h │ │ ├── win32_misc.cpp │ │ ├── win32_misc.h │ │ ├── win32_op.h │ │ ├── window_placement_helper.cpp │ │ ├── window_placement_helper.h │ │ ├── writer_wav.cpp │ │ └── writer_wav.h │ └── shared │ │ ├── audio_math.h │ │ ├── fb2kdebug.h │ │ ├── filedialogs.h │ │ ├── shared.h │ │ ├── shared.lib │ │ └── win32_misc.h ├── pfc │ ├── alloc.h │ ├── array.h │ ├── audio_math.cpp │ ├── audio_sample.cpp │ ├── audio_sample.h │ ├── avltree.h │ ├── base64.cpp │ ├── base64.h │ ├── binary_search.h │ ├── bit_array.cpp │ ├── bit_array.h │ ├── bit_array_impl.h │ ├── bit_array_impl_part2.h │ ├── bsearch.cpp │ ├── bsearch.h │ ├── bsearch_inline.h │ ├── byte_order_helper.h │ ├── chain_list_v2.h │ ├── com_ptr_t.h │ ├── cpuid.cpp │ ├── cpuid.h │ ├── event.h │ ├── filehandle.cpp │ ├── filehandle.h │ ├── guid.cpp │ ├── guid.h │ ├── instance_tracker.h │ ├── int_types.h │ ├── iterators.h │ ├── list.h │ ├── lockless.h │ ├── map.h │ ├── memalign.h │ ├── nix-objects.cpp │ ├── nix-objects.h │ ├── obj-c.mm │ ├── order_helper.h │ ├── other.cpp │ ├── other.h │ ├── pathUtils.cpp │ ├── pathUtils.h │ ├── pfc-license.txt │ ├── pfc-readme.txt │ ├── pfc.h │ ├── pfc.vcxproj │ ├── pfc.vcxproj.filters │ ├── pocket_char_ops.h │ ├── pool.h │ ├── pp-gettickcount.h │ ├── pp-winapi.h │ ├── primitives.h │ ├── primitives_part2.h │ ├── printf.cpp │ ├── ptr_list.h │ ├── ptrholder.h │ ├── rcptr.h │ ├── ref_counter.h │ ├── selftest.cpp │ ├── sort.cpp │ ├── sort.h │ ├── splitString.h │ ├── stdafx.cpp │ ├── string8_impl.h │ ├── stringNew.cpp │ ├── stringNew.h │ ├── string_base.cpp │ ├── string_base.h │ ├── string_conv.cpp │ ├── string_conv.h │ ├── string_list.h │ ├── suppress_fb2k_hooks.h │ ├── syncd_storage.h │ ├── synchro.h │ ├── synchro_nix.cpp │ ├── synchro_nix.h │ ├── synchro_win.h │ ├── threads.cpp │ ├── threads.h │ ├── timers.cpp │ ├── timers.h │ ├── traits.h │ ├── utf8.cpp │ ├── wait_queue.h │ ├── wildcard.cpp │ ├── wildcard.h │ ├── win-objects.cpp │ └── win-objects.h ├── sdk-license.txt ├── sdk-readme.css └── sdk-readme.html └── install └── foo_input_amr.nsi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/.gitmodules -------------------------------------------------------------------------------- /3gpp/interf_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/interf_dec.c -------------------------------------------------------------------------------- /3gpp/interf_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/interf_dec.h -------------------------------------------------------------------------------- /3gpp/interf_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/interf_rom.h -------------------------------------------------------------------------------- /3gpp/rom_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/rom_dec.h -------------------------------------------------------------------------------- /3gpp/sp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/sp_dec.c -------------------------------------------------------------------------------- /3gpp/sp_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/sp_dec.h -------------------------------------------------------------------------------- /3gpp/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/3gpp/typedef.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/README.md -------------------------------------------------------------------------------- /foo_amr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr.sln -------------------------------------------------------------------------------- /foo_amr.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr.suo -------------------------------------------------------------------------------- /foo_amr/foo_amr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr/foo_amr.vcproj -------------------------------------------------------------------------------- /foo_amr/foo_amr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr/foo_amr.vcxproj -------------------------------------------------------------------------------- /foo_amr/foo_amr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr/foo_amr.vcxproj.filters -------------------------------------------------------------------------------- /foo_amr/foo_input_amr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr/foo_input_amr.cpp -------------------------------------------------------------------------------- /foo_amr/foo_input_amr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr/foo_input_amr.rc -------------------------------------------------------------------------------- /foo_amr/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_amr/resource.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/ATLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/ATLHelpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/ATLHelpersLean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/ATLHelpersLean.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/AutoComplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/AutoComplete.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/AutoComplete.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/BumpableElem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/BumpableElem.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CButtonLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CButtonLite.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CDialogResizeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CDialogResizeHelper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CDialogResizeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CDialogResizeHelper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CEditWithButtons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CEditWithButtons.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CEditWithButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CEditWithButtons.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CFlashWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CFlashWindow.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CIconOverlayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CIconOverlayWindow.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/CMiddleDragImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/CMiddleDragImpl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/Controls.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/GDIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/GDIUtils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/WTL-PP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/WTL-PP.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/WindowPositionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/WindowPositionUtils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/foobar2000_ATL_helpers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/foobar2000_ATL_helpers.vcxproj -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/foobar2000_ATL_helpers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/foobar2000_ATL_helpers.vcxproj.filters -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/inplace_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/inplace_edit.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/inplace_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/inplace_edit.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/inplace_edit_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/inplace_edit_v2.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/inplace_edit_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/inplace_edit_v2.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/misc.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/misc.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/stdafx.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/stdafx.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/ui_element_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/ui_element_helpers.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/ATLHelpers/ui_element_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/ATLHelpers/ui_element_helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/abort_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/abort_callback.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/abort_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/abort_callback.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/advconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/advconfig.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/advconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/advconfig.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/album_art.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/album_art.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/album_art.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/album_art.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/album_art_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/album_art_helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/app_close_blocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/app_close_blocker.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/app_close_blocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/app_close_blocker.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/audio_chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/audio_chunk.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/audio_chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/audio_chunk.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/audio_chunk_channel_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/audio_chunk_channel_config.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/audio_chunk_impl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // header added for fb2k mobile compatibility -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/audio_postprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/audio_postprocessor.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/autoplaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/autoplaylist.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/cfg_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/cfg_var.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/cfg_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/cfg_var.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/chapterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/chapterizer.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/chapterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/chapterizer.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/commandline.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/commandline.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/commonObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/commonObjects.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/completion_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/completion_notify.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/completion_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/completion_notify.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/component.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/component_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/component_client.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/components_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/components_menu.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/componentversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/componentversion.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/componentversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/componentversion.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/config_io_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/config_io_callback.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/config_io_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/config_io_callback.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/config_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/config_object.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/config_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/config_object.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/config_object_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/config_object_impl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/console.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/console.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/contextmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/contextmenu.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/contextmenu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/contextmenu_manager.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/core_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/core_api.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/coreversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/coreversion.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/decode_postprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/decode_postprocessor.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/dsp.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/dsp.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/dsp_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/dsp_manager.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/dsp_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/dsp_manager.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/event_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/event_logger.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/exceptions.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_cached_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_cached_impl.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_format_sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_format_sanitizer.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_info.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_info.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_info_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_info_impl.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_info_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_info_impl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_info_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_info_merge.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_operation_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_operation_callback.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/file_operation_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/file_operation_callback.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/filesystem.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/filesystem.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/filesystem_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/filesystem_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/filesystem_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/filesystem_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/filesystem_transacted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/filesystem_transacted.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/foobar2000-dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/foobar2000-dsp.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/foobar2000-pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/foobar2000-pfc.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/foobar2000-winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/foobar2000-winver.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/foobar2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/foobar2000.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/foobar2000_SDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/foobar2000_SDK.vcxproj -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/foobar2000_SDK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/foobar2000_SDK.vcxproj.filters -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/genrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/genrand.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/guids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/guids.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/hasher_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/hasher_md5.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/hasher_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/hasher_md5.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/http_client.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/icon_remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/icon_remap.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/info_lookup_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/info_lookup_handler.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/initquit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/initquit.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/input.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/input.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/input_file_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/input_file_type.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/input_file_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/input_file_type.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/input_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/input_impl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/library_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/library_manager.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/link_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/link_resolver.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/link_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/link_resolver.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/main_thread_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/main_thread_callback.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/main_thread_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/main_thread_callback.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/mainmenu.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/mem_block_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/mem_block_container.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/mem_block_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/mem_block_container.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/menu.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/menu_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/menu_helpers.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/menu_helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/menu_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/menu_item.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/menu_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/menu_manager.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/message_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/message_loop.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/metadb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/metadb.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/metadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/metadb.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/metadb_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/metadb_handle.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/metadb_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/metadb_handle.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/metadb_handle_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/metadb_handle_list.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/modeless_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/modeless_dialog.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/ole_interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/ole_interaction.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/output.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/output.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/packet_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/packet_decoder.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/packet_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/packet_decoder.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/play_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/play_callback.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playable_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playable_location.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playable_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playable_location.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playback_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playback_control.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playback_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playback_control.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playback_stream_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playback_stream_capture.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playlist.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playlist.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playlist_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playlist_loader.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/playlist_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/playlist_loader.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/popup_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/popup_message.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/popup_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/popup_message.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/preferences_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/preferences_page.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/preferences_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/preferences_page.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/progress_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/progress_meter.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/replaygain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/replaygain.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/replaygain.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/replaygain_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/replaygain_info.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/replaygain_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/replaygain_scanner.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/resampler.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/search_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/search_tools.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/search_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/search_tools.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/service.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/service.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/service_by_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/service_by_guid.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/service_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/service_factory.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/service_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/service_impl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/shortcut_actions.h: -------------------------------------------------------------------------------- 1 | #error DEPRECATED 2 | -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/stdafx.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/system_time_keeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/system_time_keeper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/tag_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/tag_processor.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/tag_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/tag_processor.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/tag_processor_id3v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/tag_processor_id3v2.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/threaded_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/threaded_process.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/threaded_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/threaded_process.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/titleformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/titleformat.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/titleformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/titleformat.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/track_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/track_property.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/ui.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/ui.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/ui_edit_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/ui_edit_context.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/ui_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/ui_element.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/ui_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/ui_element.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/unpack.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/utility.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/SDK/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/SDK/vis.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_input_validator/foo_input_validator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_input_validator/foo_input_validator.dll -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_input_validator/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_input_validator/readme.txt -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/PCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/PCH.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/contextmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/contextmenu.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/decode.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/dsp.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/foo_sample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/foo_sample.rc -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/foo_sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/foo_sample.sln -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/foo_sample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/foo_sample.vcxproj -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/foo_sample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/foo_sample.vcxproj.filters -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/initquit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/initquit.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/input_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/input_raw.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/main.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/mainmenu.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/playback_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/playback_state.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/preferences.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/rating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/rating.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/readme.txt -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/resource.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/stdafx.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/ui_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/ui_element.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foo_sample/ui_element_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foo_sample/ui_element_dialog.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foobar2000_component_client/component_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foobar2000_component_client/component_client.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/foobar2000_component_client/foobar2000_component_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/foobar2000_component_client/foobar2000_component_client.vcxproj -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/COM_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/COM_utils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/CPowerRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/CPowerRequest.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/CPowerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/CPowerRequest.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/CPropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/CPropVariant.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/CSingleThreadWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/CSingleThreadWrapper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/CallForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/CallForwarder.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/CmdThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/CmdThread.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/IDataObjectUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/IDataObjectUtils.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/IDataObjectUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/IDataObjectUtils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/ProcessUtils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/ProfileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/ProfileCache.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/SmartStrStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/SmartStrStr.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/SmartStrStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/SmartStrStr.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/StdAfx.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/StdAfx.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/ThreadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/ThreadUtils.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/ThreadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/ThreadUtils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/TypeFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/TypeFind.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/VisUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/VisUtils.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/VisUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/VisUtils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/advconfig_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/advconfig_runtime.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/album_art_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/album_art_helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/bitreader_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/bitreader_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cfg_guidlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cfg_guidlist.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/clipboard.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/clipboard.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/create_directory_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/create_directory_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/create_directory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/create_directory_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cue_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cue_creator.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cue_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cue_creator.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cue_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cue_parser.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cue_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cue_parser.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cue_parser_embedding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cue_parser_embedding.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cuesheet_index_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cuesheet_index_list.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/cuesheet_index_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/cuesheet_index_list.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/dialog_resize_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/dialog_resize_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/dialog_resize_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/dialog_resize_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/dropdown_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/dropdown_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/dropdown_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/dropdown_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/duration_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/duration_counter.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/dynamic_bitrate_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/dynamic_bitrate_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/dynamic_bitrate_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/dynamic_bitrate_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/fb2k_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/fb2k_threads.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/fb2k_wfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/fb2k_wfx.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/fileReadAhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/fileReadAhead.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_cached.h: -------------------------------------------------------------------------------- 1 | // obsolete, moved to SDK -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_info_const_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_info_const_impl.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_info_const_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_info_const_impl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_list_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_list_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_list_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_list_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_move_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_move_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_move_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_move_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_win32_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_win32_wrapper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/file_win32_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/file_win32_wrapper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/filetimetools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/filetimetools.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/filetimetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/filetimetools.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj.filters -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/fullFileBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/fullFileBuffer.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/gdiplus_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/gdiplus_helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/icon_remapping_wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/icon_remapping_wildcard.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/input_fix_seeking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/input_fix_seeking.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/input_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/input_helpers.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/input_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/input_helpers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/input_stream_info_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/input_stream_info_reader.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/listview_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/listview_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/listview_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/listview_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/meta_table_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/meta_table_builder.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/metadb_io_hintlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/metadb_io_hintlist.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/mp3_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/mp3_utils.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/mp3_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/mp3_utils.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/packet_decoder_aac_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/packet_decoder_aac_common.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/packet_decoder_aac_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/packet_decoder_aac_common.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/packet_decoder_mp3_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/packet_decoder_mp3_common.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/packet_decoder_mp3_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/packet_decoder_mp3_common.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/playlist_position_reference_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/playlist_position_reference_tracker.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/reader_pretend_nonseekable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/reader_pretend_nonseekable.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/readers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/readers.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/readers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/readers.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/rethrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/rethrow.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/seekabilizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/seekabilizer.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/seekabilizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/seekabilizer.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/stream_buffer_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/stream_buffer_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/stream_buffer_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/stream_buffer_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/tag_write_callback_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/tag_write_callback_impl.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/text_file_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/text_file_loader.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/text_file_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/text_file_loader.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/win32_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/win32_dialog.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/win32_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/win32_dialog.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/win32_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/win32_misc.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/win32_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/win32_misc.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/win32_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/win32_op.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/window_placement_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/window_placement_helper.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/window_placement_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/window_placement_helper.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/writer_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/writer_wav.cpp -------------------------------------------------------------------------------- /foo_sdk/foobar2000/helpers/writer_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/helpers/writer_wav.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/shared/audio_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/shared/audio_math.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/shared/fb2kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/shared/fb2kdebug.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/shared/filedialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/shared/filedialogs.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/shared/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/shared/shared.h -------------------------------------------------------------------------------- /foo_sdk/foobar2000/shared/shared.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/shared/shared.lib -------------------------------------------------------------------------------- /foo_sdk/foobar2000/shared/win32_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/foobar2000/shared/win32_misc.h -------------------------------------------------------------------------------- /foo_sdk/pfc/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/alloc.h -------------------------------------------------------------------------------- /foo_sdk/pfc/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/array.h -------------------------------------------------------------------------------- /foo_sdk/pfc/audio_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/audio_math.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/audio_sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/audio_sample.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/audio_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/audio_sample.h -------------------------------------------------------------------------------- /foo_sdk/pfc/avltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/avltree.h -------------------------------------------------------------------------------- /foo_sdk/pfc/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/base64.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/base64.h -------------------------------------------------------------------------------- /foo_sdk/pfc/binary_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/binary_search.h -------------------------------------------------------------------------------- /foo_sdk/pfc/bit_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bit_array.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/bit_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bit_array.h -------------------------------------------------------------------------------- /foo_sdk/pfc/bit_array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bit_array_impl.h -------------------------------------------------------------------------------- /foo_sdk/pfc/bit_array_impl_part2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bit_array_impl_part2.h -------------------------------------------------------------------------------- /foo_sdk/pfc/bsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bsearch.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/bsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bsearch.h -------------------------------------------------------------------------------- /foo_sdk/pfc/bsearch_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/bsearch_inline.h -------------------------------------------------------------------------------- /foo_sdk/pfc/byte_order_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/byte_order_helper.h -------------------------------------------------------------------------------- /foo_sdk/pfc/chain_list_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/chain_list_v2.h -------------------------------------------------------------------------------- /foo_sdk/pfc/com_ptr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/com_ptr_t.h -------------------------------------------------------------------------------- /foo_sdk/pfc/cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/cpuid.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/cpuid.h -------------------------------------------------------------------------------- /foo_sdk/pfc/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/event.h -------------------------------------------------------------------------------- /foo_sdk/pfc/filehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/filehandle.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/filehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/filehandle.h -------------------------------------------------------------------------------- /foo_sdk/pfc/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/guid.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/guid.h -------------------------------------------------------------------------------- /foo_sdk/pfc/instance_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/instance_tracker.h -------------------------------------------------------------------------------- /foo_sdk/pfc/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/int_types.h -------------------------------------------------------------------------------- /foo_sdk/pfc/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/iterators.h -------------------------------------------------------------------------------- /foo_sdk/pfc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/list.h -------------------------------------------------------------------------------- /foo_sdk/pfc/lockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/lockless.h -------------------------------------------------------------------------------- /foo_sdk/pfc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/map.h -------------------------------------------------------------------------------- /foo_sdk/pfc/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/memalign.h -------------------------------------------------------------------------------- /foo_sdk/pfc/nix-objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/nix-objects.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/nix-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/nix-objects.h -------------------------------------------------------------------------------- /foo_sdk/pfc/obj-c.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/obj-c.mm -------------------------------------------------------------------------------- /foo_sdk/pfc/order_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/order_helper.h -------------------------------------------------------------------------------- /foo_sdk/pfc/other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/other.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/other.h -------------------------------------------------------------------------------- /foo_sdk/pfc/pathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pathUtils.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/pathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pathUtils.h -------------------------------------------------------------------------------- /foo_sdk/pfc/pfc-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pfc-license.txt -------------------------------------------------------------------------------- /foo_sdk/pfc/pfc-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pfc-readme.txt -------------------------------------------------------------------------------- /foo_sdk/pfc/pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pfc.h -------------------------------------------------------------------------------- /foo_sdk/pfc/pfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pfc.vcxproj -------------------------------------------------------------------------------- /foo_sdk/pfc/pfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pfc.vcxproj.filters -------------------------------------------------------------------------------- /foo_sdk/pfc/pocket_char_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pocket_char_ops.h -------------------------------------------------------------------------------- /foo_sdk/pfc/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pool.h -------------------------------------------------------------------------------- /foo_sdk/pfc/pp-gettickcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pp-gettickcount.h -------------------------------------------------------------------------------- /foo_sdk/pfc/pp-winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/pp-winapi.h -------------------------------------------------------------------------------- /foo_sdk/pfc/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/primitives.h -------------------------------------------------------------------------------- /foo_sdk/pfc/primitives_part2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/primitives_part2.h -------------------------------------------------------------------------------- /foo_sdk/pfc/printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/printf.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/ptr_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/ptr_list.h -------------------------------------------------------------------------------- /foo_sdk/pfc/ptrholder.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // added for compatibility with fb2k mobile -------------------------------------------------------------------------------- /foo_sdk/pfc/rcptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/rcptr.h -------------------------------------------------------------------------------- /foo_sdk/pfc/ref_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/ref_counter.h -------------------------------------------------------------------------------- /foo_sdk/pfc/selftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/selftest.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/sort.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/sort.h -------------------------------------------------------------------------------- /foo_sdk/pfc/splitString.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // added for compatibility with fb2k mobile -------------------------------------------------------------------------------- /foo_sdk/pfc/stdafx.cpp: -------------------------------------------------------------------------------- 1 | //cpp used to generate precompiled header 2 | #include "pfc.h" -------------------------------------------------------------------------------- /foo_sdk/pfc/string8_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/string8_impl.h -------------------------------------------------------------------------------- /foo_sdk/pfc/stringNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/stringNew.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/stringNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/stringNew.h -------------------------------------------------------------------------------- /foo_sdk/pfc/string_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/string_base.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/string_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/string_base.h -------------------------------------------------------------------------------- /foo_sdk/pfc/string_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/string_conv.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/string_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/string_conv.h -------------------------------------------------------------------------------- /foo_sdk/pfc/string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/string_list.h -------------------------------------------------------------------------------- /foo_sdk/pfc/suppress_fb2k_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/suppress_fb2k_hooks.h -------------------------------------------------------------------------------- /foo_sdk/pfc/syncd_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/syncd_storage.h -------------------------------------------------------------------------------- /foo_sdk/pfc/synchro.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | // added for compatibility with fb2k mobile -------------------------------------------------------------------------------- /foo_sdk/pfc/synchro_nix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/synchro_nix.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/synchro_nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/synchro_nix.h -------------------------------------------------------------------------------- /foo_sdk/pfc/synchro_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/synchro_win.h -------------------------------------------------------------------------------- /foo_sdk/pfc/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/threads.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/threads.h -------------------------------------------------------------------------------- /foo_sdk/pfc/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/timers.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/timers.h -------------------------------------------------------------------------------- /foo_sdk/pfc/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/traits.h -------------------------------------------------------------------------------- /foo_sdk/pfc/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/utf8.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/wait_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/wait_queue.h -------------------------------------------------------------------------------- /foo_sdk/pfc/wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/wildcard.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/wildcard.h -------------------------------------------------------------------------------- /foo_sdk/pfc/win-objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/win-objects.cpp -------------------------------------------------------------------------------- /foo_sdk/pfc/win-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/pfc/win-objects.h -------------------------------------------------------------------------------- /foo_sdk/sdk-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/sdk-license.txt -------------------------------------------------------------------------------- /foo_sdk/sdk-readme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/sdk-readme.css -------------------------------------------------------------------------------- /foo_sdk/sdk-readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/foo_sdk/sdk-readme.html -------------------------------------------------------------------------------- /install/foo_input_amr.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unjello/foo_input_amr/HEAD/install/foo_input_amr.nsi --------------------------------------------------------------------------------