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

Function FindHotkeyIfExpr

source/hotkey.cpp:153–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151
152
153HotkeyCriterion *FindHotkeyIfExpr(LPTSTR aExpr)
154{
155 for (HotkeyCriterion* cp = g_FirstHotExpr; cp; cp = cp->NextExpr)
156 if (cp->OriginalExpr && !_tcscmp(aExpr, cp->OriginalExpr)) // Case-sensitive since the expression might be.
157 return cp;
158 return NULL;
159}
160
161
162void Script::PreparseHotkeyIfExpr(Line* aLine)

Callers 2

IsDirectiveMethod · 0.85
IfExprMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected