mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 10:48:23 +08:00
13 lines
530 B
C
13 lines
530 B
C
#pragma once
|
|
#include "keyboardmanager/common/KeyboardManagerState.h"
|
|
#include "keyboardmanager/common/Shortcut.h"
|
|
#include "keyboardmanager/common/Helpers.h"
|
|
|
|
// Function to create the Edit Shortcuts Window
|
|
void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardManagerState);
|
|
|
|
// 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(); |