mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
* Rename JsonHelpers to FancyZonesData Add new JsonHelpers.[h|cpp] files * Introduce FancyZonesDataTypes * Move first part of JSON related stuff to JsonHelpers files * Small refactor * Move all json related stuff to JsonHelpers * Minor refactoring * Fix formating * Remove GetPersistFancyZonesJSONPath() and GetPersistAppZoneHistoryFilePath() Remove GetActiveZoneSetTmpPath(), GetDeletedCustomZoneSetsTmpPath and GetAppliedZoneSetTmpPath() Simplify tests * Address PR comment - Rename FancyZonesDataNS to FancyZonesData * Address PR comment - Rename local var * Delete obsolete stuff * Remove double and uneeded includes Introduce const non-localizable string variables Address all othe PR comments * Add comments to explain hardcoded values * Remove FancyZonesData namespace * Introduce const non-localizable string variables in FancyZonesDataTypes * Add comments to explain FancyZonesData maps Co-authored-by: Clint Rutkas <clint@rutkas.com>
30 lines
721 B
C++
30 lines
721 B
C++
#pragma once
|
|
#include "resource.h"
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
#include <Unknwn.h>
|
|
#include <winrt/base.h>
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <dwmapi.h>
|
|
#include <ProjectTelemetry.h>
|
|
#include <shellapi.h>
|
|
#include <ShellScalingApi.h>
|
|
#include <strsafe.h>
|
|
#include <TraceLoggingActivity.h>
|
|
#include <wil\resource.h>
|
|
#include <wil\result.h>
|
|
#include <winrt/windows.foundation.h>
|
|
#include <psapi.h>
|
|
#include <shared_mutex>
|
|
#include <functional>
|
|
#include <unordered_set>
|
|
#include <ShObjIdl.h>
|
|
|
|
#pragma comment(lib, "windowsapp")
|
|
|
|
namespace winrt
|
|
{
|
|
using namespace ::winrt;
|
|
} |