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

Function InputFind

source/script2.cpp:805–811  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

803
804
805input_type *InputFind(InputObject *object)
806{
807 for (auto *input = g_input; input; input = input->Prev)
808 if (input->ScriptObject == object)
809 return input;
810 return NULL;
811}
812
813
814

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected