mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
13 lines
292 B
C
13 lines
292 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace KeyboardManagerInput
|
||
|
|
{
|
||
|
|
class InputInterface;
|
||
|
|
}
|
||
|
|
|
||
|
|
namespace KeyboardEventHandlers
|
||
|
|
{
|
||
|
|
// Function to ensure Num Lock state does not change when it is suppressed by the low level hook
|
||
|
|
void SetNumLockToPreviousState(KeyboardManagerInput::InputInterface& ii);
|
||
|
|
};
|