comparison foosdk/sdk/foobar2000/helpers/image_load_save.h @ 1:20d02a178406 default tip

*: check in everything else yay
author Paper <paper@tflc.us>
date Mon, 05 Jan 2026 02:15:46 -0500
parents
children
comparison
equal deleted inserted replaced
0:e9bb126753e7 1:20d02a178406
1 #pragma once
2
3 namespace fb2k {
4 bool imageLoadDialog( pfc::string_base & outFN, HWND wndParent, const char * initDir );
5
6 album_art_data::ptr imageLoadDialog( HWND wndParent, const char * initDir );
7
8 //! bAllowAsync: run file writing offthread. In such case the caller will not be made aware if writing failed. \n
9 //! Error popup is shown if actual file writing fails.
10 bool imageSaveDialog(album_art_data_ptr content, HWND wndParent, const char * initDir , bool bAllowAsync = true );
11
12 album_art_data::ptr readPictureFile( const char * path, abort_callback & a);
13 }