satdump/android/android_dialogs.h

12 lines
299 B
C
Raw Permalink Normal View History

#pragma once
#include <string>
2022-05-15 20:15:19 +02:00
void show_select_file_dialog();
std::string get_select_file_dialog_result();
2022-05-15 20:15:19 +02:00
void show_select_directory_dialog();
std::string get_select_directory_dialog_result();
2026-01-14 08:13:26 +01:00
void show_select_filesave_dialog(std::string name);
std::string get_select_filesave_dialog_result();