mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-25 10:01:57 +08:00
aebd7657ef
* Added localization code to pipeline and created one LocProject json for Settings * Fixed typo * Reordered nuget source * Moved nuget install to restore step * Added FZ.rc file to LocProj * Added FZ resx file and modified rc file
30 lines
737 B
C++
30 lines
737 B
C++
#pragma once
|
|
#include "Generated Files/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;
|
|
} |