MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / ActiveWindowLayoutHasAltGr

Function ActiveWindowLayoutHasAltGr

source/keyboard_mouse.cpp:3766–3771  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3764
3765
3766bool ActiveWindowLayoutHasAltGr()
3767// Thread-safety: See comments in LayoutHasAltGr() below.
3768{
3769 Get_active_window_keybd_layout // Defines the variable active_window_keybd_layout for use below.
3770 return LayoutHasAltGr(active_window_keybd_layout) == CONDITION_TRUE; // i.e caller wants both CONDITION_FALSE and LAYOUT_UNDETERMINED to be considered non-AltGr.
3771}
3772
3773
3774

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected