mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 00:48:00 +08:00
17 lines
513 B
C++
17 lines
513 B
C++
#pragma once
|
|
|
|
namespace KBMEditor
|
|
{
|
|
class KeyboardManagerState;
|
|
}
|
|
|
|
class MappingConfiguration;
|
|
|
|
// Function to create the Edit Shortcuts Window
|
|
void CreateEditShortcutsWindow(HINSTANCE hInst, KBMEditor::KeyboardManagerState& keyboardManagerState, MappingConfiguration& mappingConfiguration);
|
|
|
|
// Function to check if there is already a window active if yes bring to foreground
|
|
bool CheckEditShortcutsWindowActive();
|
|
|
|
// Function to close any active Edit Shortcuts window
|
|
void CloseActiveEditShortcutsWindow(); |