2019-10-17 20:57:19 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "targetver.h"
|
|
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
|
// Windows Header Files:
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
|
|
// C RunTime Header Files
|
2020-03-24 03:51:23 -04:00
|
|
|
#include <cstdlib>
|
2019-10-17 20:57:19 -07:00
|
|
|
#include <malloc.h>
|
|
|
|
|
#include <memory.h>
|
2020-03-24 03:51:23 -04:00
|
|
|
#include <cwchar>
|
2019-10-17 20:57:19 -07:00
|
|
|
#include <atlbase.h>
|
|
|
|
|
#include <strsafe.h>
|
|
|
|
|
#include <pathcch.h>
|
|
|
|
|
#include <shobjidl.h>
|
|
|
|
|
#include <shellapi.h>
|
2019-11-11 11:00:42 -08:00
|
|
|
#include <shlwapi.h>
|
2019-10-17 20:57:19 -07:00
|
|
|
|
2019-10-28 10:14:59 -07:00
|
|
|
#include <ProjectTelemetry.h>
|
2020-04-08 19:12:46 +02:00
|
|
|
|
|
|
|
|
#pragma comment(lib, "windowsapp")
|