mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
* Add project
* Cleanup project file and add resource file
* Move common logic to FileLocksmithLib
* Cleanup interop vcxproj
* Implement handler, add assets and appx manifest
* Revert "Cleanup interop vcxproj"
This reverts commit 97bf991f2e.
* Remove package on uninstall
Install package on enable
Fix launching app
Cleanup
* Revert non-related change
* Spellcheck
* Update src/modules/FileLocksmith/FileLocksmithContextMenu/Resources.resx
* Wire Show in extended context menu setting
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>
|