| 83 | return std::string{}; |
| 84 | } |
| 85 | std::string get_platform_name() { return sizeof(size_t) == 4 ? "windows(32bit)" : "windows"; } |
| 86 | std::string get_app_data_folder(const std::string &app_name) { |
| 87 | return get_special_folder_path(CSIDL_APPDATA, true) + "\\" + app_name; |
| 88 | } |
no outgoing calls
no test coverage detected