2020-03-05 15:52:59 -08:00
|
|
|
#pragma once
|
2020-03-23 10:44:02 -07:00
|
|
|
// Do not define WIN32_LEAN_AND_MEAN as WinUI doesn't work when it is defined
|
2020-05-26 17:00:09 +03:00
|
|
|
#include <unknwn.h>
|
2020-03-05 15:52:59 -08:00
|
|
|
#include <windows.h>
|
2020-11-03 13:59:35 -05:00
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <cstring>
|
2020-03-23 10:44:02 -07:00
|
|
|
#include <thread>
|
2020-03-05 15:52:59 -08:00
|
|
|
#include <winrt/Windows.system.h>
|
|
|
|
|
#include <winrt/windows.ui.xaml.hosting.h>
|
|
|
|
|
#include <windows.ui.xaml.hosting.desktopwindowxamlsource.h>
|
2020-09-08 12:24:59 -07:00
|
|
|
#include <winrt/Windows.UI.Xaml.Automation.h>
|
2020-03-05 15:52:59 -08:00
|
|
|
#include <winrt/windows.ui.xaml.controls.h>
|
|
|
|
|
#include <winrt/Windows.ui.xaml.media.h>
|
|
|
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
|
|
|
#include "winrt/Windows.Foundation.h"
|
|
|
|
|
#include "winrt/Windows.Foundation.Numerics.h"
|
|
|
|
|
#include "winrt/Windows.UI.Xaml.Controls.Primitives.h"
|
2020-03-23 10:44:02 -07:00
|
|
|
#include "winrt/Windows.UI.Text.h"
|
|
|
|
|
#include "winrt/Windows.UI.Core.h"
|
2020-07-13 11:49:09 -07:00
|
|
|
#include <winrt/Windows.UI.Xaml.Interop.h>
|
|
|
|
|
#include <mutex>
|
2021-01-18 19:38:42 +02:00
|
|
|
#include <common/logger/logger.h>
|
2020-03-05 15:52:59 -08:00
|
|
|
|
|
|
|
|
using namespace winrt;
|
|
|
|
|
using namespace Windows::UI;
|
|
|
|
|
using namespace Windows::UI::Composition;
|
|
|
|
|
using namespace Windows::UI::Xaml::Hosting;
|
|
|
|
|
using namespace Windows::Foundation::Numerics;
|
|
|
|
|
using namespace Windows::UI::Xaml;
|
2020-03-23 10:44:02 -07:00
|
|
|
using namespace Windows::UI::Xaml::Controls;
|