continue management portal

This commit is contained in:
2025-03-01 07:13:08 -06:00
parent 52f0d755ba
commit d54ba8203a
6 changed files with 155 additions and 2 deletions

View File

@ -307,6 +307,13 @@ enum class provider_type : std::size_t {
unknown,
};
[[nodiscard]] auto
provider_type_from_string(std::string_view type,
provider_type default_type = provider_type::unknown)
-> provider_type;
[[nodiscard]] auto provider_type_to_string(provider_type type) -> std::string;
#if defined(_WIN32)
struct open_file_data final {
PVOID directory_buffer{nullptr};