mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-28 11:58:24 +08:00
14 lines
394 B
C
14 lines
394 B
C
|
#pragma once
|
||
|
|
||
|
#include "pch.h"
|
||
|
|
||
|
#include <ErrorTypes.h>
|
||
|
|
||
|
namespace KeyboardManagerEditorStrings
|
||
|
{
|
||
|
// String constant for the default app name in Remap shortcuts
|
||
|
inline const std::wstring DefaultAppName = GET_RESOURCE_STRING(IDS_EDITSHORTCUTS_ALLAPPS);
|
||
|
|
||
|
// Function to return the error message
|
||
|
winrt::hstring GetErrorMessage(KeyboardManagerHelper::ErrorType errorType);
|
||
|
}
|