mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
* Standardize Image Resizer naming * Use no-throw methods * Do not move if new dir already exist * Update test files paths
13 lines
352 B
C++
13 lines
352 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace ImageResizerConstants
|
|
{
|
|
// Name of the powertoy module.
|
|
inline const std::wstring ModuleKey = L"Image Resizer";
|
|
|
|
// Name of the ImageResizer save folder.
|
|
inline const std::wstring ModuleOldSaveFolderKey = L"ImageResizer";
|
|
inline const std::wstring ModuleSaveFolderKey = L"Image Resizer";
|
|
}
|