mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
20 lines
532 B
C
20 lines
532 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#define COMPOSITION
|
||
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||
|
|
#include <windows.h>
|
||
|
|
#include <strsafe.h>
|
||
|
|
#include <hIdUsage.h>
|
||
|
|
|
||
|
|
#ifdef COMPOSITION
|
||
|
|
#include <windows.ui.composition.interop.h>
|
||
|
|
#include <DispatcherQueue.h>
|
||
|
|
#include <winrt/Windows.System.h>
|
||
|
|
#include <winrt/Windows.Foundation.h>
|
||
|
|
#include <winrt/Windows.UI.Composition.Desktop.h>
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
||
|
|
#include <common/SettingsAPI/settings_helpers.h>
|
||
|
|
#include <common/logger/logger.h>
|