2020-03-06 07:52:59 +08:00
|
|
|
#pragma once
|
2020-03-24 01:44:02 +08:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
2020-05-26 22:00:09 +08:00
|
|
|
#include <winrt/base.h>
|
|
|
|
#include <winrt/Windows.Foundation.h>
|
|
|
|
#include <winrt/Windows.Graphics.h>
|
2020-03-06 07:52:59 +08:00
|
|
|
#include <winrt/Windows.system.h>
|
|
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
|
|
#include "winrt/Windows.Foundation.Numerics.h"
|
2020-07-14 02:49:09 +08:00
|
|
|
#include <winrt/windows.ui.xaml.controls.h>
|
2020-03-24 01:44:02 +08:00
|
|
|
#include "winrt/Windows.UI.Core.h"
|
|
|
|
#include <stdlib.h>
|
2020-05-06 03:30:50 +08:00
|
|
|
#include <ProjectTelemetry.h>
|
2020-03-06 07:52:59 +08:00
|
|
|
|
|
|
|
using namespace winrt;
|
|
|
|
using namespace Windows::Foundation::Numerics;
|
|
|
|
using namespace Windows::UI::Xaml;
|
2020-03-24 01:44:02 +08:00
|
|
|
using namespace Windows::UI::Xaml::Controls;
|