mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
6a9badd31b
* Remove WinUI include in KeyboardManagerState.h * Changed include steps * Clean up headers in KeyboardManagerUI except XamlBridge.h * Cleaned up headers in KeyboardManager common and test * Cleaned up headers in KeyboardManager project * Removed headers from XamlBridge * Removed some headers from kbm common pch * Added MP flag to reduce build time * Added missing include
18 lines
587 B
C++
18 lines
587 B
C++
#pragma once
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
#include <winrt/base.h>
|
|
#include <winrt/Windows.Foundation.h>
|
|
#include <winrt/Windows.Graphics.h>
|
|
#include <winrt/Windows.system.h>
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
#include "winrt/Windows.Foundation.Numerics.h"
|
|
#include <winrt/windows.ui.xaml.controls.h>
|
|
#include "winrt/Windows.UI.Core.h"
|
|
#include <stdlib.h>
|
|
#include <ProjectTelemetry.h>
|
|
|
|
using namespace winrt;
|
|
using namespace Windows::Foundation::Numerics;
|
|
using namespace Windows::UI::Xaml;
|
|
using namespace Windows::UI::Xaml::Controls; |