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