mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01: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();
|
||
|
|
|
||
|
|
}
|