mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
12 lines
279 B
C
12 lines
279 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 ModuleSaveFolderKey = L"ImageResizer";
|
||
|
|
}
|