mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
Changed output dir to modules and resolved conflicts (#2233)
This commit is contained in:
@@ -14,38 +14,13 @@ namespace KeyboardManagerHelper
|
||||
Shift,
|
||||
Action
|
||||
};
|
||||
|
||||
|
||||
// Function to split a wstring based on a delimiter and return a vector of split strings
|
||||
std::vector<std::wstring> splitwstring(const std::wstring& input, wchar_t delimiter);
|
||||
|
||||
|
||||
// Function to return the next sibling element for an element under a stack panel
|
||||
winrt::Windows::Foundation::IInspectable getSiblingElement(winrt::Windows::Foundation::IInspectable const& element);
|
||||
|
||||
// Function to convert an unsigned int vector to hstring by concatenating them
|
||||
template<typename T>
|
||||
winrt::hstring convertVectorToHstring(const std::vector<T>& input)
|
||||
{
|
||||
winrt::hstring output;
|
||||
for (int i = 0; i < input.size(); i++)
|
||||
{
|
||||
output = output + winrt::to_hstring((unsigned int)input[i]) + winrt::to_hstring(L" ");
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
// Function to convert a wstring vector to a integer vector
|
||||
template<typename T>
|
||||
std::vector<T> convertWStringVectorToIntegerVector(const std::vector<std::wstring>& input)
|
||||
{
|
||||
std::vector<T> typeVector;
|
||||
for (int i = 0; i < input.size(); i++)
|
||||
{
|
||||
typeVector.push_back((T)std::stoi(input[i]));
|
||||
}
|
||||
|
||||
return typeVector;
|
||||
}
|
||||
|
||||
// Function to return if the key is an extended key which requires the use of the extended key flag
|
||||
bool isExtendedKey(DWORD key);
|
||||
|
||||
|
||||
@@ -44,9 +44,13 @@
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\</OutDir>
|
||||
<IntDir>$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\</OutDir>
|
||||
<IntDir>$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
|
||||
Reference in New Issue
Block a user