mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
384 B
24 lines
384 B
#ifdef _WIN32 |
|
#include "dialogs.h" |
|
#include <dialogs_win.h> |
|
|
|
std::string Dialog::select_folder() { |
|
return c_select_folder(); |
|
} |
|
|
|
std::string Dialog::new_file() { |
|
return c_new_file(); |
|
} |
|
|
|
std::string Dialog::new_folder() { |
|
return c_new_folder(); |
|
} |
|
|
|
std::string Dialog::select_file() { |
|
return c_select_file(); |
|
} |
|
|
|
std::string Dialog::save_file() { |
|
return c_save_file(); |
|
} |
|
#endif
|
|
|