Stand/Stand/get_appdata_path.hpp
2024-10-16 11:20:42 +08:00

12 lines
318 B
C++

#pragma once
#include <string>
namespace Stand
{
[[nodiscard]] extern std::wstring get_roaming_path();
[[nodiscard]] extern std::wstring get_appdata_path();
[[nodiscard]] extern std::wstring get_appdata_path(const std::string& rel);
[[nodiscard]] extern std::wstring get_appdata_path(const std::wstring& rel);
}