-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpch.h
49 lines (41 loc) · 1.61 KB
/
pch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
_____ _ _ _ _ ___ _____ _ _ _ _
|_ _| _(_) |_ ___ _ _ | | | |_ _|_ _|__ ___| | |_(_) |_
| || '_| | _/ _ \ ' \ | |_| || | _| |/ _ \/ _ \ | / / | _|
|_||_| |_|\__\___/_||_(_)___/|___(_)_|\___/\___/_|_\_\_|\__|
Copyright © 2024, Michel Gerritse
All rights reserved.
This source code is available under the BSD-3-Clause license.
See LICENSE.txt in the root directory of this source tree.
*/
#pragma once
#define WIN32_LEAN_AND_MEAN
#define WINRT_LEAN_AND_MEAN
/* Win32 SDK headers */
#include <windows.h>
#include <unknwn.h>
#include <restrictederrorinfo.h>
#include <hstring.h>
#undef GetCurrentTime // Undefine GetCurrentTime macro to prevent conflict with Storyboard::GetCurrentTime
/* Universal Windows Platform headers */
#include <winrt/Windows.Foundation.h>
#include <winrt/Windows.UI.Text.h>
#include <winrt/Windows.UI.Xaml.Interop.h>
#include <winrt/Windows.System.h>
/* Windows App SDK headers */
#include <winrt/Microsoft.UI.Input.h>
#include <winrt/Microsoft.UI.Windowing.h>
#include <winrt/Microsoft.UI.Xaml.h>
#include <winrt/Microsoft.UI.Xaml.Controls.h>
#include <winrt/Microsoft.UI.Xaml.Controls.Primitives.h>
#include <winrt/Microsoft.UI.Xaml.Data.h>
#include <winrt/Microsoft.UI.Xaml.Input.h>
#include <winrt/Microsoft.UI.Xaml.Interop.h>
#include <winrt/Microsoft.UI.Xaml.Markup.h>
#include <winrt/Microsoft.UI.Xaml.Media.h>
#include <winrt/Microsoft.UI.Xaml.Navigation.h>
#include <winrt/Microsoft.UI.Xaml.Shapes.h>
#include <microsoft.ui.xaml.window.h>
/* Implementation headers */
#include "Controls/SettingsCard/SettingsCard.h"
#include "Controls/SettingsExpander/SettingsExpander.h"