14 lines
373 B
C++
14 lines
373 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
namespace platform {
|
|
void configure_encoding();
|
|
/// @return environment locale in ISO format ll_CC
|
|
std::string detect_locale();
|
|
/// @brief Open folder using system file manager asynchronously
|
|
/// @param folder target folder
|
|
void open_folder(const std::filesystem::path& folder);
|
|
}
|