mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 20:19:17 +08:00
14 lines
381 B
C
14 lines
381 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <Shlobj.h>
|
||
|
#include <cpprest/json.h>
|
||
|
|
||
|
namespace PTSettingsHelper {
|
||
|
|
||
|
void save_module_settings(const std::wstring& powertoy_name, web::json::value& settings);
|
||
|
web::json::value load_module_settings(const std::wstring& powertoy_name);
|
||
|
void save_general_settings(web::json::value& settings);
|
||
|
web::json::value load_general_settings();
|
||
|
|
||
|
}
|