mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-27 03:14:18 +08:00
18 lines
408 B
C++
18 lines
408 B
C++
#pragma once
|
|
|
|
#include "pch.h"
|
|
|
|
#include "ShortcutErrorType.h"
|
|
|
|
namespace KeyboardManagerEditorStrings
|
|
{
|
|
// String constant for the default app name in Remap shortcuts
|
|
inline std::wstring DefaultAppName()
|
|
{
|
|
return GET_RESOURCE_STRING(IDS_EDITSHORTCUTS_ALLAPPS);
|
|
}
|
|
|
|
// Function to return the error message
|
|
winrt::hstring GetErrorMessage(ShortcutErrorType errorType);
|
|
}
|