mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 02:06:36 +02:00
* Remove WinUI include in KeyboardManagerState.h * Changed include steps * Clean up headers in KeyboardManagerUI except XamlBridge.h * Cleaned up headers in KeyboardManager common and test * Cleaned up headers in KeyboardManager project * Removed headers from XamlBridge * Removed some headers from kbm common pch * Added MP flag to reduce build time * Added missing include
11 lines
405 B
C++
11 lines
405 B
C++
#pragma once
|
|
class KeyboardManagerState;
|
|
|
|
// 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(); |