2020-03-24 01:44:02 +08:00
|
|
|
#pragma once
|
2020-07-14 02:49:09 +08:00
|
|
|
class KeyboardManagerState;
|
2020-03-24 01:44:02 +08:00
|
|
|
|
|
|
|
// Function to create the Edit Shortcuts Window
|
2020-04-22 05:14:50 +08:00
|
|
|
void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardManagerState);
|
2020-04-15 00:24:11 +08:00
|
|
|
|
2020-04-30 08:58:31 +08:00
|
|
|
// Function to check if there is already a window active if yes bring to foreground
|
2020-05-13 06:58:11 +08:00
|
|
|
bool CheckEditShortcutsWindowActive();
|
|
|
|
|
|
|
|
// Function to close any active Edit Shortcuts window
|
|
|
|
void CloseActiveEditShortcutsWindow();
|