2019-10-18 11:57:19 +08: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 15:51:23 +08:00
|
|
|
#include <cstdlib>
|
2019-10-18 11:57:19 +08:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <memory.h>
|
2020-03-24 15:51:23 +08:00
|
|
|
#include <cwchar>
|
2019-10-18 11:57:19 +08:00
|
|
|
#include <atlbase.h>
|
|
|
|
#include <strsafe.h>
|
|
|
|
#include <pathcch.h>
|
|
|
|
#include <shobjidl.h>
|
|
|
|
#include <shellapi.h>
|
2019-11-12 03:00:42 +08:00
|
|
|
#include <shlwapi.h>
|
2019-10-18 11:57:19 +08:00
|
|
|
|
2019-10-29 01:14:59 +08:00
|
|
|
#include <ProjectTelemetry.h>
|
2020-04-09 01:12:46 +08:00
|
|
|
|
|
|
|
#pragma comment(lib, "windowsapp")
|