framework.h
1 #pragma once 2 3 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 4 5 #include <Windows.h> 6 #include <Shlwapi.h> 7 #include <ShlObj_core.h> 8 #include <atlbase.h> 9 #include <commctrl.h> 10 11 // C++ Standard library 12 #include <atomic> 13 #include <string> 14 #include <filesystem> 15 #include <fstream>