mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-08 04:17:55 +08:00
24 lines
473 B
C
24 lines
473 B
C
#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
|
|
#include <cstdlib>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <cwchar>
|
|
#include <atlbase.h>
|
|
#include <strsafe.h>
|
|
#include <pathcch.h>
|
|
#include <shobjidl.h>
|
|
#include <shellapi.h>
|
|
#include <shlwapi.h>
|
|
|
|
#include <ProjectTelemetry.h>
|
|
|
|
#pragma comment(lib, "windowsapp")
|