mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
16 lines
317 B
C
16 lines
317 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||
|
|
|
||
|
|
#include <Windows.h>
|
||
|
|
#include <Shlwapi.h>
|
||
|
|
#include <ShlObj_core.h>
|
||
|
|
#include <atlbase.h>
|
||
|
|
#include <commctrl.h>
|
||
|
|
|
||
|
|
// C++ Standard library
|
||
|
|
#include <atomic>
|
||
|
|
#include <string>
|
||
|
|
#include <filesystem>
|
||
|
|
#include <fstream>
|