latest SDK

This commit is contained in:
2021-12-14 00:28:25 -07:00
commit 68b10d413b
492 changed files with 80542 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
namespace fb2k {
bool imageLoadDialog( pfc::string_base & outFN, HWND wndParent, const char * initDir );
album_art_data::ptr imageLoadDialog( HWND wndParent, const char * initDir );
//! bAllowAsync: run file writing offthread. In such case the caller will not be made aware if writing failed. \n
//! Error popup is shown if actual file writing fails.
bool imageSaveDialog(album_art_data_ptr content, HWND wndParent, const char * initDir , bool bAllowAsync = true );
album_art_data::ptr readPictureFile( const char * path, abort_callback & a);
}