mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
11 lines
434 B
C
11 lines
434 B
C
#pragma once
|
|
#include <keyboardmanager/common/KeyboardManagerState.h>
|
|
|
|
// Function to create the Edit Keyboard Window
|
|
void createEditKeyboardWindow(HINSTANCE hInst, KeyboardManagerState& keyboardManagerState);
|
|
|
|
// Function to check if there is already a window active if yes bring to foreground
|
|
bool CheckEditKeyboardWindowActive();
|
|
|
|
// Function to close any active Edit Keyboard window
|
|
void CloseActiveEditKeyboardWindow(); |