├── .clang-format ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── dist ├── sdk │ ├── foobar2000 │ │ ├── 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 │ │ │ ├── archive.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 │ │ │ ├── exception_io.h │ │ │ ├── exceptions.h │ │ │ ├── file.h │ │ │ ├── file_cached_impl.cpp │ │ │ ├── file_format_sanitizer.h │ │ │ ├── file_info.cpp │ │ │ ├── file_info.h │ │ │ ├── file_info_filter.h │ │ │ ├── file_info_filter_impl.h │ │ │ ├── file_info_impl.cpp │ │ │ ├── file_info_impl.h │ │ │ ├── file_info_merge.cpp │ │ │ ├── file_lock_manager.h │ │ │ ├── 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 │ │ │ ├── foosort.cpp │ │ │ ├── foosort.h │ │ │ ├── genrand.h │ │ │ ├── guids.cpp │ │ │ ├── hasher_md5.cpp │ │ │ ├── hasher_md5.h │ │ │ ├── http_client.h │ │ │ ├── icon_remap.h │ │ │ ├── imageLoaderLite.h │ │ │ ├── imageViewer.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_callbacks.h │ │ │ ├── metadb_display_field_provider.h │ │ │ ├── metadb_handle.cpp │ │ │ ├── metadb_handle.h │ │ │ ├── metadb_handle_list.cpp │ │ │ ├── metadb_index.h │ │ │ ├── modeless_dialog.h │ │ │ ├── noInfo.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_compat.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.cpp │ │ │ ├── track_property.h │ │ │ ├── tracks.h │ │ │ ├── ui.cpp │ │ │ ├── ui.h │ │ │ ├── ui_edit_context.h │ │ │ ├── ui_element.cpp │ │ │ ├── ui_element.h │ │ │ ├── ui_element_typable_window_manager.h │ │ │ ├── unpack.h │ │ │ ├── utility.cpp │ │ │ └── vis.h │ │ ├── foobar2000_component_client │ │ │ ├── component_client.cpp │ │ │ └── foobar2000_component_client.vcxproj │ │ ├── helpers │ │ │ ├── AutoComplete.cpp │ │ │ ├── AutoComplete.h │ │ │ ├── BumpableElem.h │ │ │ ├── CDialogResizeHelper.h │ │ │ ├── COM_utils.h │ │ │ ├── CPropVariant.h │ │ │ ├── CSingleThreadWrapper.h │ │ │ ├── CTableEditHelper-Legacy.cpp │ │ │ ├── CTableEditHelper-Legacy.h │ │ │ ├── CallForwarder.h │ │ │ ├── CmdThread.h │ │ │ ├── DarkMode.cpp │ │ │ ├── DarkMode.h │ │ │ ├── ProcessUtils.h │ │ │ ├── ProfileCache.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── ThreadUtils.cpp │ │ │ ├── ThreadUtils.h │ │ │ ├── VisUtils.cpp │ │ │ ├── VisUtils.h │ │ │ ├── VolumeMap.cpp │ │ │ ├── VolumeMap.h │ │ │ ├── WindowPositionUtils.h │ │ │ ├── advconfig_impl.h │ │ │ ├── advconfig_runtime.h │ │ │ ├── album_art_helpers.h │ │ │ ├── atl-misc.h │ │ │ ├── audio_render_float.h │ │ │ ├── bitreader_helper.h │ │ │ ├── cfg_guidlist.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_readonly.h │ │ │ ├── file_win32_wrapper.cpp │ │ │ ├── file_win32_wrapper.h │ │ │ ├── filetimetools.cpp │ │ │ ├── filetimetools.h │ │ │ ├── foobar2000+atl.h │ │ │ ├── foobar2000_sdk_helpers.vcxproj │ │ │ ├── foobar2000_sdk_helpers.vcxproj.filters │ │ │ ├── fullFileBuffer.h │ │ │ ├── helpers.h │ │ │ ├── icon_remapping_wildcard.h │ │ │ ├── image_load_save.cpp │ │ │ ├── image_load_save.h │ │ │ ├── inplace_edit.cpp │ │ │ ├── inplace_edit.h │ │ │ ├── input_fix_seeking.h │ │ │ ├── input_helper_cue.cpp │ │ │ ├── input_helper_cue.h │ │ │ ├── input_helpers.cpp │ │ │ ├── input_helpers.h │ │ │ ├── input_logging.h │ │ │ ├── input_stream_info_reader.h │ │ │ ├── meta_table_builder.h │ │ │ ├── metadb_handle_set.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 │ │ │ ├── text_file_loader_v2.cpp │ │ │ ├── text_file_loader_v2.h │ │ │ ├── track_property_callback_impl.cpp │ │ │ ├── track_property_callback_impl.h │ │ │ ├── ui_element_helpers.cpp │ │ │ ├── ui_element_helpers.h │ │ │ ├── win32_dialog.cpp │ │ │ ├── win32_dialog.h │ │ │ ├── win32_misc.cpp │ │ │ ├── win32_misc.h │ │ │ ├── window_placement_helper.cpp │ │ │ ├── window_placement_helper.h │ │ │ ├── winmm-types.h │ │ │ ├── writer_wav.cpp │ │ │ └── writer_wav.h │ │ └── shared │ │ │ ├── audio_math.h │ │ │ ├── fb2kdebug.h │ │ │ ├── filedialogs.h │ │ │ ├── shared-ARM64.lib │ │ │ ├── shared-Win32.lib │ │ │ ├── shared-x64.lib │ │ │ ├── shared.h │ │ │ ├── shared.lib │ │ │ └── win32_misc.h │ ├── libPPUI │ │ ├── AutoComplete.cpp │ │ ├── AutoComplete.h │ │ ├── CButtonLite.h │ │ ├── CContainedWindowSimple.h │ │ ├── CDialogResizeHelper.cpp │ │ ├── CDialogResizeHelper.h │ │ ├── CDialogResizeHelperCompat.h │ │ ├── CEditWithButtons.cpp │ │ ├── CEditWithButtons.h │ │ ├── CEnumString.h │ │ ├── CFlashWindow.h │ │ ├── CHeaderCtrlEx.h │ │ ├── CIconOverlayWindow.h │ │ ├── CListAccessible.cpp │ │ ├── CListAccessible.h │ │ ├── CListControl-Cell.h │ │ ├── CListControl-Cells-Compat.h │ │ ├── CListControl-Cells.cpp │ │ ├── CListControl-Cells.h │ │ ├── CListControl-Subst.cpp │ │ ├── CListControl-Subst.h │ │ ├── CListControl.cpp │ │ ├── CListControl.h │ │ ├── CListControlComplete.h │ │ ├── CListControlHeaderImpl.cpp │ │ ├── CListControlHeaderImpl.h │ │ ├── CListControlOwnerData.h │ │ ├── CListControlSimple.h │ │ ├── CListControlTruncationTooltipImpl.cpp │ │ ├── CListControlTruncationTooltipImpl.h │ │ ├── CListControlUserOptions.h │ │ ├── CListControlWithSelection.cpp │ │ ├── CListControlWithSelection.h │ │ ├── CListControl_EditImpl.h │ │ ├── CListViewCtrlEx.h │ │ ├── CMiddleDragImpl.cpp │ │ ├── CMiddleDragImpl.h │ │ ├── CMiddleDragOverlay.h │ │ ├── CPopupTooltipMessage.h │ │ ├── CPowerRequest.cpp │ │ ├── CPowerRequest.h │ │ ├── CPropVariant.h │ │ ├── CWindowCreateAndDelete.h │ │ ├── Controls.cpp │ │ ├── Controls.h │ │ ├── DarkMode.cpp │ │ ├── DarkMode.h │ │ ├── DarkModeEx.h │ │ ├── GDIUtils.cpp │ │ ├── GDIUtils.h │ │ ├── IDI_SCROLL.ico │ │ ├── IDI_SCROLL.txt │ │ ├── IDataObjectUtils.cpp │ │ ├── IDataObjectUtils.h │ │ ├── ImageEncoder.cpp │ │ ├── ImageEncoder.h │ │ ├── ImplementOnFinalMessage.h │ │ ├── InPlaceCombo.cpp │ │ ├── InPlaceEdit.cpp │ │ ├── InPlaceEdit.h │ │ ├── InPlaceEditTable.cpp │ │ ├── InPlaceEditTable.h │ │ ├── PaintUtils.cpp │ │ ├── PaintUtils.h │ │ ├── ReStyleWnd.h │ │ ├── SmartStrStr.cpp │ │ ├── SmartStrStr.h │ │ ├── TreeMultiSel.h │ │ ├── TypeFind.cpp │ │ ├── TypeFind.h │ │ ├── clipboard.cpp │ │ ├── clipboard.h │ │ ├── commandline_parser.cpp │ │ ├── commandline_parser.h │ │ ├── gdi-types-portable.h │ │ ├── gdiplus-helpers-webp.h │ │ ├── gdiplus_helpers.cpp │ │ ├── gdiplus_helpers.h │ │ ├── gesture.h │ │ ├── libPPUI-license.txt │ │ ├── libPPUI-readme.txt │ │ ├── libPPUI.vcxproj │ │ ├── libPPUI.vcxproj.filters │ │ ├── link-CommonControls6.h │ │ ├── listview_helper.cpp │ │ ├── listview_helper.h │ │ ├── pp-COM-macros.h │ │ ├── ppresources.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── win32_op.cpp │ │ ├── win32_op.h │ │ ├── win32_utility.cpp │ │ ├── win32_utility.h │ │ └── wtl-pp.h │ ├── pfc │ │ ├── SmartStrStr-table.h │ │ ├── SmartStrStr-twoCharMappings.h │ │ ├── SmartStrStr.cpp │ │ ├── SmartStrStr.h │ │ ├── alloc.h │ │ ├── array.h │ │ ├── audio_math.cpp │ │ ├── audio_sample.cpp │ │ ├── audio_sample.h │ │ ├── autoref.h │ │ ├── avltree.h │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── bigmem.cpp │ │ ├── bigmem.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.h │ │ ├── chain_list_v2.h │ │ ├── charDownConvert.cpp │ │ ├── charDownConvert.h │ │ ├── cmd_thread.h │ │ ├── com_ptr_t.h │ │ ├── cpuid.cpp │ │ ├── cpuid.h │ │ ├── crashWithMessage.cpp │ │ ├── debug.h │ │ ├── event.h │ │ ├── filehandle.cpp │ │ ├── filehandle.h │ │ ├── fixed_map.h │ │ ├── fpu.h │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── instance_tracker.h │ │ ├── instance_tracker_legacy.h │ │ ├── int_types.h │ │ ├── iterators.h │ │ ├── killswitch.h │ │ ├── list.h │ │ ├── lockless.h │ │ ├── map.h │ │ ├── mem_block.h │ │ ├── memalign.h │ │ ├── nix-objects.cpp │ │ ├── nix-objects.h │ │ ├── notifyList.h │ │ ├── obj-c.mm │ │ ├── once.h │ │ ├── order_helper.h │ │ ├── other.cpp │ │ ├── other.h │ │ ├── pathUtils.cpp │ │ ├── pathUtils.h │ │ ├── pfc-fb2k-hooks.cpp │ │ ├── pfc-fb2k-hooks.h │ │ ├── pfc-license.txt │ │ ├── pfc-lite.h │ │ ├── pfc-readme.txt │ │ ├── pfc.h │ │ ├── pfc.vcxproj │ │ ├── pfc.vcxproj.filters │ │ ├── platform-objects.h │ │ ├── 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 │ │ ├── splitString2.cpp │ │ ├── splitString2.h │ │ ├── stdafx.cpp │ │ ├── stdsort.h │ │ ├── string-compare.cpp │ │ ├── string-compare.h │ │ ├── string-conv-lite.cpp │ │ ├── string-conv-lite.h │ │ ├── string-interface.h │ │ ├── string-lite.cpp │ │ ├── string-lite.h │ │ ├── string-part.h │ │ ├── string8_impl.h │ │ ├── stringNew.cpp │ │ ├── stringNew.h │ │ ├── string_base.cpp │ │ ├── string_base.h │ │ ├── string_conv.cpp │ │ ├── string_conv.h │ │ ├── string_list.h │ │ ├── string_simple.h │ │ ├── suppress_fb2k_hooks.h │ │ ├── syncd_storage.h │ │ ├── synchro.h │ │ ├── synchro_nix.cpp │ │ ├── synchro_nix.h │ │ ├── synchro_win.h │ │ ├── targetver.h │ │ ├── threads.cpp │ │ ├── threads.h │ │ ├── timers.cpp │ │ ├── timers.h │ │ ├── traits.h │ │ ├── unicode-normalize.cpp │ │ ├── unicode-normalize.h │ │ ├── utf8.cpp │ │ ├── wait_queue.h │ │ ├── weakRef.h │ │ ├── wildcard.cpp │ │ ├── wildcard.h │ │ ├── win-objects.cpp │ │ └── win-objects.h │ ├── sdk-license.txt │ └── sdk-readme.html └── wtl │ ├── Include │ ├── atlapp.h │ ├── atlcrack.h │ ├── atlctrls.h │ ├── atlctrlw.h │ ├── atlctrlx.h │ ├── atlddx.h │ ├── atldlgs.h │ ├── atldwm.h │ ├── atlfind.h │ ├── atlframe.h │ ├── atlgdi.h │ ├── atlmisc.h │ ├── atlprint.h │ ├── atlres.h │ ├── atlribbon.h │ ├── atlscrl.h │ ├── atlsplit.h │ ├── atltheme.h │ ├── atluser.h │ └── atlwinx.h │ ├── MS-PL.txt │ ├── ReadMe.html │ └── version ├── foo_flowin.sln ├── src ├── com_utils.h ├── common_settings.props ├── dllmain.cpp ├── exports.cpp ├── flowin_callback.h ├── flowin_config.cpp ├── flowin_config.h ├── flowin_core.cpp ├── flowin_core.h ├── flowin_defines.h ├── flowin_dummy.cpp ├── flowin_exports.def ├── flowin_host.cpp ├── flowin_interface.h ├── flowin_interface_impl.cpp ├── flowin_interface_impl.h ├── flowin_menu_node.cpp ├── flowin_menu_node.h ├── flowin_utils.cpp ├── flowin_utils.h ├── flowin_vars.h ├── foo_flowin.manifest ├── foo_flowin.rc ├── foo_flowin.vcxproj ├── foo_flowin.vcxproj.filters ├── initquit.cpp ├── mainmenu.cpp ├── pch.cpp ├── pch.h ├── resource.h ├── snap_window.h └── ui │ ├── ui_custom_title.cpp │ ├── ui_custom_title.h │ ├── ui_no_frame.cpp │ ├── ui_no_frame.h │ ├── ui_transparency_settings.cpp │ └── ui_transparency_settings.h └── tools ├── 7z.dll ├── 7z.exe └── vswhere.exe /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/LICENSE -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/abort_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/abort_callback.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/abort_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/abort_callback.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/advconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/advconfig.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/advconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/advconfig.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/album_art.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/album_art.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/album_art.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/album_art.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/album_art_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/album_art_helpers.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/app_close_blocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/app_close_blocker.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/app_close_blocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/app_close_blocker.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/archive.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/audio_chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/audio_chunk.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/audio_chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/audio_chunk.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/audio_chunk_channel_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/audio_chunk_channel_config.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/audio_chunk_impl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // header added for fb2k mobile compatibility -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/audio_postprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/audio_postprocessor.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/autoplaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/autoplaylist.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/cfg_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/cfg_var.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/cfg_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/cfg_var.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/chapterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/chapterizer.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/chapterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/chapterizer.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/commandline.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/commandline.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/commonObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/commonObjects.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/completion_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/completion_notify.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/completion_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/completion_notify.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/component.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/component_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/component_client.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/components_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/components_menu.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/componentversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/componentversion.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/componentversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/componentversion.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/config_io_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/config_io_callback.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/config_io_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/config_io_callback.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/config_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/config_object.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/config_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/config_object.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/config_object_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/config_object_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/console.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/console.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/contextmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/contextmenu.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/contextmenu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/contextmenu_manager.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/core_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/core_api.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/coreversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/coreversion.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/decode_postprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/decode_postprocessor.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/dsp.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/dsp.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/dsp_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/dsp_manager.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/dsp_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/dsp_manager.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/event_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/event_logger.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/exception_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/exception_io.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/exceptions.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_cached_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_cached_impl.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_format_sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_format_sanitizer.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info_filter.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info_filter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info_filter_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info_impl.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_info_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_info_merge.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_lock_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_lock_manager.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_operation_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_operation_callback.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/file_operation_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/file_operation_callback.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/filesystem.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/filesystem.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/filesystem_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/filesystem_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/filesystem_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/filesystem_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/filesystem_transacted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/filesystem_transacted.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foobar2000-dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foobar2000-dsp.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foobar2000-pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foobar2000-pfc.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foobar2000-winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foobar2000-winver.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foobar2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foobar2000.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foobar2000_SDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foobar2000_SDK.vcxproj -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foobar2000_SDK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foobar2000_SDK.vcxproj.filters -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foosort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foosort.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/foosort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/foosort.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/genrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/genrand.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/guids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/guids.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/hasher_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/hasher_md5.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/hasher_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/hasher_md5.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/http_client.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/icon_remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/icon_remap.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/imageLoaderLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/imageLoaderLite.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/imageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/imageViewer.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/info_lookup_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/info_lookup_handler.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/initquit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/initquit.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/input.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/input.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/input_file_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/input_file_type.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/input_file_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/input_file_type.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/input_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/input_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/library_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/library_manager.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/link_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/link_resolver.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/link_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/link_resolver.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/main_thread_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/main_thread_callback.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/main_thread_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/main_thread_callback.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/mainmenu.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/mem_block_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/mem_block_container.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/mem_block_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/mem_block_container.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/menu.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/menu_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/menu_helpers.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/menu_helpers.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/menu_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/menu_item.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/menu_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/menu_manager.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/message_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/message_loop.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb_callbacks.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb_display_field_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb_display_field_provider.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb_handle.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb_handle.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb_handle_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb_handle_list.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/metadb_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/metadb_index.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/modeless_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/modeless_dialog.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/noInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/noInfo.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ole_interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ole_interaction.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/output.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/output.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/packet_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/packet_decoder.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/packet_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/packet_decoder.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/play_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/play_callback.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playable_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playable_location.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playable_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playable_location.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playback_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playback_control.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playback_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playback_control.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playback_stream_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playback_stream_capture.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playlist.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playlist.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playlist_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playlist_loader.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/playlist_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/playlist_loader.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/popup_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/popup_message.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/popup_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/popup_message.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/preferences_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/preferences_page.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/preferences_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/preferences_page.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/progress_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/progress_meter.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/replaygain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/replaygain.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/replaygain.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/replaygain_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/replaygain_info.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/replaygain_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/replaygain_scanner.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/resampler.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/search_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/search_tools.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/search_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/search_tools.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/service.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/service.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/service_by_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/service_by_guid.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/service_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/service_compat.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/service_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/service_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/shortcut_actions.h: -------------------------------------------------------------------------------- 1 | #error DEPRECATED 2 | -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/stdafx.cpp: -------------------------------------------------------------------------------- 1 | //cpp used to generate precompiled header 2 | #include "foobar2000.h" -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/system_time_keeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/system_time_keeper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/tag_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/tag_processor.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/tag_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/tag_processor.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/tag_processor_id3v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/tag_processor_id3v2.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/threaded_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/threaded_process.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/threaded_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/threaded_process.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/titleformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/titleformat.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/titleformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/titleformat.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/track_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/track_property.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/track_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/track_property.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/tracks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/tracks.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ui.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ui.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ui_edit_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ui_edit_context.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ui_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ui_element.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ui_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ui_element.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/ui_element_typable_window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/ui_element_typable_window_manager.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/unpack.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/utility.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/SDK/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/SDK/vis.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/foobar2000_component_client/component_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/foobar2000_component_client/component_client.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/foobar2000_component_client/foobar2000_component_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/foobar2000_component_client/foobar2000_component_client.vcxproj -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/AutoComplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/AutoComplete.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/AutoComplete.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/BumpableElem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/BumpableElem.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CDialogResizeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/CDialogResizeHelper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/COM_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/COM_utils.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CPropVariant.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CSingleThreadWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/CSingleThreadWrapper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CTableEditHelper-Legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/CTableEditHelper-Legacy.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CTableEditHelper-Legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/CTableEditHelper-Legacy.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CallForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/CallForwarder.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/CmdThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/CmdThread.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/DarkMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/DarkMode.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/DarkMode.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/ProcessUtils.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/ProfileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/ProfileCache.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/StdAfx.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/StdAfx.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/ThreadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/ThreadUtils.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/ThreadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/ThreadUtils.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/VisUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/VisUtils.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/VisUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/VisUtils.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/VolumeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/VolumeMap.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/VolumeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/VolumeMap.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/WindowPositionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/WindowPositionUtils.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/advconfig_impl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // fb2k mobile compat -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/advconfig_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/advconfig_runtime.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/album_art_helpers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | // stub, added for compatibility with fb2k mobile source -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/atl-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/atl-misc.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/audio_render_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/audio_render_float.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/bitreader_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/bitreader_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cfg_guidlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cfg_guidlist.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/create_directory_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/create_directory_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/create_directory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/create_directory_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cue_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cue_creator.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cue_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cue_creator.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cue_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cue_parser.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cue_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cue_parser.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cue_parser_embedding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cue_parser_embedding.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cuesheet_index_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cuesheet_index_list.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/cuesheet_index_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/cuesheet_index_list.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/dialog_resize_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/dialog_resize_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/dialog_resize_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/dialog_resize_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/dropdown_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/dropdown_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/dropdown_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/dropdown_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/duration_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/duration_counter.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/dynamic_bitrate_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/dynamic_bitrate_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/dynamic_bitrate_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/dynamic_bitrate_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/fb2k_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/fb2k_threads.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/fb2k_wfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/fb2k_wfx.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/fileReadAhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/fileReadAhead.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_cached.h: -------------------------------------------------------------------------------- 1 | // obsolete, moved to SDK -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_info_const_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_info_const_impl.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_info_const_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_info_const_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_list_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_list_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_list_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_list_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_move_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_move_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_move_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_move_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_readonly.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | // fb2k mobile compat 3 | 4 | #include "../SDK/filesystem_helper.h" -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_win32_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_win32_wrapper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/file_win32_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/file_win32_wrapper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/filetimetools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/filetimetools.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/filetimetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/filetimetools.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/foobar2000+atl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/foobar2000+atl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/foobar2000_sdk_helpers.vcxproj.filters -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/fullFileBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/fullFileBuffer.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/helpers.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/icon_remapping_wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/icon_remapping_wildcard.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/image_load_save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/image_load_save.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/image_load_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/image_load_save.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/inplace_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/inplace_edit.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/inplace_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/inplace_edit.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_fix_seeking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_fix_seeking.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_helper_cue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_helper_cue.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_helper_cue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_helper_cue.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_helpers.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_helpers.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_logging.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/input_stream_info_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/input_stream_info_reader.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/meta_table_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/meta_table_builder.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/metadb_handle_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/metadb_handle_set.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/metadb_io_hintlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/metadb_io_hintlist.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/mp3_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/mp3_utils.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/mp3_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/mp3_utils.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/packet_decoder_aac_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/packet_decoder_aac_common.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/packet_decoder_aac_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/packet_decoder_aac_common.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/packet_decoder_mp3_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/packet_decoder_mp3_common.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/packet_decoder_mp3_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/packet_decoder_mp3_common.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/playlist_position_reference_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/playlist_position_reference_tracker.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/reader_pretend_nonseekable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/reader_pretend_nonseekable.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/readers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/readers.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/readers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/readers.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/rethrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/rethrow.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/seekabilizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/seekabilizer.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/seekabilizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/seekabilizer.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/stream_buffer_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/stream_buffer_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/stream_buffer_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/stream_buffer_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/tag_write_callback_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/tag_write_callback_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/text_file_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/text_file_loader.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/text_file_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/text_file_loader.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/text_file_loader_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/text_file_loader_v2.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/text_file_loader_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/text_file_loader_v2.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/track_property_callback_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/track_property_callback_impl.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/track_property_callback_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/track_property_callback_impl.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/ui_element_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/ui_element_helpers.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/ui_element_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/ui_element_helpers.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/win32_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/win32_dialog.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/win32_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/win32_dialog.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/win32_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/win32_misc.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/win32_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/win32_misc.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/window_placement_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/window_placement_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/window_placement_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/window_placement_helper.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/winmm-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/winmm-types.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/writer_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/writer_wav.cpp -------------------------------------------------------------------------------- /dist/sdk/foobar2000/helpers/writer_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/helpers/writer_wav.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/audio_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/audio_math.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/fb2kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/fb2kdebug.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/filedialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/filedialogs.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/shared-ARM64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/shared-ARM64.lib -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/shared-Win32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/shared-Win32.lib -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/shared-x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/shared-x64.lib -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/shared.h -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/shared.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/shared.lib -------------------------------------------------------------------------------- /dist/sdk/foobar2000/shared/win32_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/foobar2000/shared/win32_misc.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/AutoComplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/AutoComplete.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/AutoComplete.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CButtonLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CButtonLite.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CContainedWindowSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CContainedWindowSimple.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CDialogResizeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CDialogResizeHelper.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CDialogResizeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CDialogResizeHelper.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CDialogResizeHelperCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CDialogResizeHelperCompat.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CEditWithButtons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CEditWithButtons.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CEditWithButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CEditWithButtons.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CEnumString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CEnumString.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CFlashWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CFlashWindow.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CHeaderCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CHeaderCtrlEx.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CIconOverlayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CIconOverlayWindow.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListAccessible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListAccessible.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListAccessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListAccessible.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl-Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl-Cell.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl-Cells-Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl-Cells-Compat.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl-Cells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl-Cells.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl-Cells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl-Cells.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl-Subst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl-Subst.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl-Subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl-Subst.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlComplete.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlHeaderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlHeaderImpl.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlHeaderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlHeaderImpl.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlOwnerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlOwnerData.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlSimple.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlTruncationTooltipImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlTruncationTooltipImpl.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlTruncationTooltipImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlTruncationTooltipImpl.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlUserOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlUserOptions.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlWithSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlWithSelection.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControlWithSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControlWithSelection.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListControl_EditImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListControl_EditImpl.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CListViewCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CListViewCtrlEx.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CMiddleDragImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CMiddleDragImpl.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CMiddleDragImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CMiddleDragImpl.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CMiddleDragOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CMiddleDragOverlay.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CPopupTooltipMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CPopupTooltipMessage.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CPowerRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CPowerRequest.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CPowerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CPowerRequest.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CPropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CPropVariant.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/CWindowCreateAndDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/CWindowCreateAndDelete.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/Controls.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/Controls.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/DarkMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/DarkMode.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/DarkMode.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/DarkModeEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/DarkModeEx.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/GDIUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/GDIUtils.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/GDIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/GDIUtils.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/IDI_SCROLL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/IDI_SCROLL.ico -------------------------------------------------------------------------------- /dist/sdk/libPPUI/IDI_SCROLL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/IDI_SCROLL.txt -------------------------------------------------------------------------------- /dist/sdk/libPPUI/IDataObjectUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/IDataObjectUtils.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/IDataObjectUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/IDataObjectUtils.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/ImageEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/ImageEncoder.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/ImageEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/ImageEncoder.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/ImplementOnFinalMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/ImplementOnFinalMessage.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/InPlaceCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/InPlaceCombo.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/InPlaceEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/InPlaceEdit.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/InPlaceEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/InPlaceEdit.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/InPlaceEditTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/InPlaceEditTable.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/InPlaceEditTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/InPlaceEditTable.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/PaintUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/PaintUtils.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/PaintUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/PaintUtils.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/ReStyleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/ReStyleWnd.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/SmartStrStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/SmartStrStr.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/SmartStrStr.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Moved 4 | #include -------------------------------------------------------------------------------- /dist/sdk/libPPUI/TreeMultiSel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/TreeMultiSel.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/TypeFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/TypeFind.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/TypeFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/TypeFind.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/clipboard.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/clipboard.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/commandline_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/commandline_parser.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/commandline_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/commandline_parser.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/gdi-types-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/gdi-types-portable.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/gdiplus-helpers-webp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/gdiplus-helpers-webp.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/gdiplus_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/gdiplus_helpers.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/gdiplus_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/gdiplus_helpers.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/gesture.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/libPPUI-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/libPPUI-license.txt -------------------------------------------------------------------------------- /dist/sdk/libPPUI/libPPUI-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/libPPUI-readme.txt -------------------------------------------------------------------------------- /dist/sdk/libPPUI/libPPUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/libPPUI.vcxproj -------------------------------------------------------------------------------- /dist/sdk/libPPUI/libPPUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/libPPUI.vcxproj.filters -------------------------------------------------------------------------------- /dist/sdk/libPPUI/link-CommonControls6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/link-CommonControls6.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/listview_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/listview_helper.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/listview_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/listview_helper.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/pp-COM-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/pp-COM-macros.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/ppresources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/ppresources.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /dist/sdk/libPPUI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/stdafx.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/targetver.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/win32_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/win32_op.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/win32_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/win32_op.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/win32_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/win32_utility.cpp -------------------------------------------------------------------------------- /dist/sdk/libPPUI/win32_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/win32_utility.h -------------------------------------------------------------------------------- /dist/sdk/libPPUI/wtl-pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/libPPUI/wtl-pp.h -------------------------------------------------------------------------------- /dist/sdk/pfc/SmartStrStr-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/SmartStrStr-table.h -------------------------------------------------------------------------------- /dist/sdk/pfc/SmartStrStr-twoCharMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/SmartStrStr-twoCharMappings.h -------------------------------------------------------------------------------- /dist/sdk/pfc/SmartStrStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/SmartStrStr.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/SmartStrStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/SmartStrStr.h -------------------------------------------------------------------------------- /dist/sdk/pfc/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/alloc.h -------------------------------------------------------------------------------- /dist/sdk/pfc/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/array.h -------------------------------------------------------------------------------- /dist/sdk/pfc/audio_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/audio_math.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/audio_sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/audio_sample.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/audio_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/audio_sample.h -------------------------------------------------------------------------------- /dist/sdk/pfc/autoref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/autoref.h -------------------------------------------------------------------------------- /dist/sdk/pfc/avltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/avltree.h -------------------------------------------------------------------------------- /dist/sdk/pfc/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/base64.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/base64.h -------------------------------------------------------------------------------- /dist/sdk/pfc/bigmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bigmem.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/bigmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bigmem.h -------------------------------------------------------------------------------- /dist/sdk/pfc/binary_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/binary_search.h -------------------------------------------------------------------------------- /dist/sdk/pfc/bit_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bit_array.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/bit_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bit_array.h -------------------------------------------------------------------------------- /dist/sdk/pfc/bit_array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bit_array_impl.h -------------------------------------------------------------------------------- /dist/sdk/pfc/bit_array_impl_part2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bit_array_impl_part2.h -------------------------------------------------------------------------------- /dist/sdk/pfc/bsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bsearch.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/bsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bsearch.h -------------------------------------------------------------------------------- /dist/sdk/pfc/bsearch_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/bsearch_inline.h -------------------------------------------------------------------------------- /dist/sdk/pfc/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/byte_order.h -------------------------------------------------------------------------------- /dist/sdk/pfc/chain_list_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/chain_list_v2.h -------------------------------------------------------------------------------- /dist/sdk/pfc/charDownConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/charDownConvert.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/charDownConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/charDownConvert.h -------------------------------------------------------------------------------- /dist/sdk/pfc/cmd_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/cmd_thread.h -------------------------------------------------------------------------------- /dist/sdk/pfc/com_ptr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/com_ptr_t.h -------------------------------------------------------------------------------- /dist/sdk/pfc/cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/cpuid.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/cpuid.h -------------------------------------------------------------------------------- /dist/sdk/pfc/crashWithMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/crashWithMessage.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/debug.h -------------------------------------------------------------------------------- /dist/sdk/pfc/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/event.h -------------------------------------------------------------------------------- /dist/sdk/pfc/filehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/filehandle.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/filehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/filehandle.h -------------------------------------------------------------------------------- /dist/sdk/pfc/fixed_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/fixed_map.h -------------------------------------------------------------------------------- /dist/sdk/pfc/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/fpu.h -------------------------------------------------------------------------------- /dist/sdk/pfc/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/guid.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/guid.h -------------------------------------------------------------------------------- /dist/sdk/pfc/instance_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/instance_tracker.h -------------------------------------------------------------------------------- /dist/sdk/pfc/instance_tracker_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/instance_tracker_legacy.h -------------------------------------------------------------------------------- /dist/sdk/pfc/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/int_types.h -------------------------------------------------------------------------------- /dist/sdk/pfc/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/iterators.h -------------------------------------------------------------------------------- /dist/sdk/pfc/killswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/killswitch.h -------------------------------------------------------------------------------- /dist/sdk/pfc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/list.h -------------------------------------------------------------------------------- /dist/sdk/pfc/lockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/lockless.h -------------------------------------------------------------------------------- /dist/sdk/pfc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/map.h -------------------------------------------------------------------------------- /dist/sdk/pfc/mem_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/mem_block.h -------------------------------------------------------------------------------- /dist/sdk/pfc/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/memalign.h -------------------------------------------------------------------------------- /dist/sdk/pfc/nix-objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/nix-objects.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/nix-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/nix-objects.h -------------------------------------------------------------------------------- /dist/sdk/pfc/notifyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/notifyList.h -------------------------------------------------------------------------------- /dist/sdk/pfc/obj-c.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/obj-c.mm -------------------------------------------------------------------------------- /dist/sdk/pfc/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/once.h -------------------------------------------------------------------------------- /dist/sdk/pfc/order_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/order_helper.h -------------------------------------------------------------------------------- /dist/sdk/pfc/other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/other.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/other.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pathUtils.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/pathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pathUtils.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc-fb2k-hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc-fb2k-hooks.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc-fb2k-hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc-fb2k-hooks.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc-license.txt -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc-lite.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc-readme.txt -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc.vcxproj -------------------------------------------------------------------------------- /dist/sdk/pfc/pfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pfc.vcxproj.filters -------------------------------------------------------------------------------- /dist/sdk/pfc/platform-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/platform-objects.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pocket_char_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pocket_char_ops.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pool.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pp-gettickcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pp-gettickcount.h -------------------------------------------------------------------------------- /dist/sdk/pfc/pp-winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/pp-winapi.h -------------------------------------------------------------------------------- /dist/sdk/pfc/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/primitives.h -------------------------------------------------------------------------------- /dist/sdk/pfc/primitives_part2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/primitives_part2.h -------------------------------------------------------------------------------- /dist/sdk/pfc/printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/printf.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/ptr_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/ptr_list.h -------------------------------------------------------------------------------- /dist/sdk/pfc/ptrholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/ptrholder.h -------------------------------------------------------------------------------- /dist/sdk/pfc/rcptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/rcptr.h -------------------------------------------------------------------------------- /dist/sdk/pfc/ref_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/ref_counter.h -------------------------------------------------------------------------------- /dist/sdk/pfc/selftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/selftest.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/sort.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/sort.h -------------------------------------------------------------------------------- /dist/sdk/pfc/splitString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/splitString.h -------------------------------------------------------------------------------- /dist/sdk/pfc/splitString2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/splitString2.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/splitString2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/splitString2.h -------------------------------------------------------------------------------- /dist/sdk/pfc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/stdafx.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/stdsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/stdsort.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string-compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-compare.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/string-compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-compare.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string-conv-lite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-conv-lite.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/string-conv-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-conv-lite.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-interface.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string-lite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-lite.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/string-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-lite.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string-part.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string8_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string8_impl.h -------------------------------------------------------------------------------- /dist/sdk/pfc/stringNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/stringNew.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/stringNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/stringNew.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string_base.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/string_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string_base.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string_conv.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/string_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string_conv.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string_list.h -------------------------------------------------------------------------------- /dist/sdk/pfc/string_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/string_simple.h -------------------------------------------------------------------------------- /dist/sdk/pfc/suppress_fb2k_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/suppress_fb2k_hooks.h -------------------------------------------------------------------------------- /dist/sdk/pfc/syncd_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/syncd_storage.h -------------------------------------------------------------------------------- /dist/sdk/pfc/synchro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/synchro.h -------------------------------------------------------------------------------- /dist/sdk/pfc/synchro_nix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/synchro_nix.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/synchro_nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/synchro_nix.h -------------------------------------------------------------------------------- /dist/sdk/pfc/synchro_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/synchro_win.h -------------------------------------------------------------------------------- /dist/sdk/pfc/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/targetver.h -------------------------------------------------------------------------------- /dist/sdk/pfc/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/threads.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/threads.h -------------------------------------------------------------------------------- /dist/sdk/pfc/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/timers.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/timers.h -------------------------------------------------------------------------------- /dist/sdk/pfc/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/traits.h -------------------------------------------------------------------------------- /dist/sdk/pfc/unicode-normalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/unicode-normalize.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/unicode-normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/unicode-normalize.h -------------------------------------------------------------------------------- /dist/sdk/pfc/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/utf8.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/wait_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/wait_queue.h -------------------------------------------------------------------------------- /dist/sdk/pfc/weakRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/weakRef.h -------------------------------------------------------------------------------- /dist/sdk/pfc/wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/wildcard.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/wildcard.h -------------------------------------------------------------------------------- /dist/sdk/pfc/win-objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/win-objects.cpp -------------------------------------------------------------------------------- /dist/sdk/pfc/win-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/pfc/win-objects.h -------------------------------------------------------------------------------- /dist/sdk/sdk-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/sdk-license.txt -------------------------------------------------------------------------------- /dist/sdk/sdk-readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/sdk/sdk-readme.html -------------------------------------------------------------------------------- /dist/wtl/Include/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlapp.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlcrack.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlctrls.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlctrlw.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlctrlx.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlddx.h -------------------------------------------------------------------------------- /dist/wtl/Include/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atldlgs.h -------------------------------------------------------------------------------- /dist/wtl/Include/atldwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atldwm.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlfind.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlframe.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlgdi.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlmisc.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlprint.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlres.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlribbon.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlscrl.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlsplit.h -------------------------------------------------------------------------------- /dist/wtl/Include/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atltheme.h -------------------------------------------------------------------------------- /dist/wtl/Include/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atluser.h -------------------------------------------------------------------------------- /dist/wtl/Include/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/Include/atlwinx.h -------------------------------------------------------------------------------- /dist/wtl/MS-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/MS-PL.txt -------------------------------------------------------------------------------- /dist/wtl/ReadMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/dist/wtl/ReadMe.html -------------------------------------------------------------------------------- /dist/wtl/version: -------------------------------------------------------------------------------- 1 | 10.0.10271 -------------------------------------------------------------------------------- /foo_flowin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/foo_flowin.sln -------------------------------------------------------------------------------- /src/com_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/com_utils.h -------------------------------------------------------------------------------- /src/common_settings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/common_settings.props -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/exports.cpp -------------------------------------------------------------------------------- /src/flowin_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_callback.h -------------------------------------------------------------------------------- /src/flowin_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_config.cpp -------------------------------------------------------------------------------- /src/flowin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_config.h -------------------------------------------------------------------------------- /src/flowin_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_core.cpp -------------------------------------------------------------------------------- /src/flowin_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_core.h -------------------------------------------------------------------------------- /src/flowin_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_defines.h -------------------------------------------------------------------------------- /src/flowin_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_dummy.cpp -------------------------------------------------------------------------------- /src/flowin_exports.def: -------------------------------------------------------------------------------- 1 | LIBRARY foo_flowin 2 | EXPORTS 3 | DllGetClassObject PRIVATE 4 | -------------------------------------------------------------------------------- /src/flowin_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_host.cpp -------------------------------------------------------------------------------- /src/flowin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_interface.h -------------------------------------------------------------------------------- /src/flowin_interface_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_interface_impl.cpp -------------------------------------------------------------------------------- /src/flowin_interface_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_interface_impl.h -------------------------------------------------------------------------------- /src/flowin_menu_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_menu_node.cpp -------------------------------------------------------------------------------- /src/flowin_menu_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_menu_node.h -------------------------------------------------------------------------------- /src/flowin_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_utils.cpp -------------------------------------------------------------------------------- /src/flowin_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_utils.h -------------------------------------------------------------------------------- /src/flowin_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/flowin_vars.h -------------------------------------------------------------------------------- /src/foo_flowin.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/foo_flowin.manifest -------------------------------------------------------------------------------- /src/foo_flowin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/foo_flowin.rc -------------------------------------------------------------------------------- /src/foo_flowin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/foo_flowin.vcxproj -------------------------------------------------------------------------------- /src/foo_flowin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/foo_flowin.vcxproj.filters -------------------------------------------------------------------------------- /src/initquit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/initquit.cpp -------------------------------------------------------------------------------- /src/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/mainmenu.cpp -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/pch.cpp -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/snap_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/snap_window.h -------------------------------------------------------------------------------- /src/ui/ui_custom_title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/ui/ui_custom_title.cpp -------------------------------------------------------------------------------- /src/ui/ui_custom_title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/ui/ui_custom_title.h -------------------------------------------------------------------------------- /src/ui/ui_no_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/ui/ui_no_frame.cpp -------------------------------------------------------------------------------- /src/ui/ui_no_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/ui/ui_no_frame.h -------------------------------------------------------------------------------- /src/ui/ui_transparency_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/ui/ui_transparency_settings.cpp -------------------------------------------------------------------------------- /src/ui/ui_transparency_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/src/ui/ui_transparency_settings.h -------------------------------------------------------------------------------- /tools/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/tools/7z.dll -------------------------------------------------------------------------------- /tools/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/tools/7z.exe -------------------------------------------------------------------------------- /tools/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttsping/foo_flowin/HEAD/tools/vswhere.exe --------------------------------------------------------------------------------