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

Method FindGlobalVar

source/script.h:3074–3074  ·  view source on GitHub ↗

Alias to improve clarity and reduce code size (if compiler chooses not to inline; due to how parameter defaults work):

Source from the content-addressed store, hash-verified

3072
3073 // Alias to improve clarity and reduce code size (if compiler chooses not to inline; due to how parameter defaults work):
3074 Var *FindGlobalVar(LPCTSTR aVarName, size_t aVarNameLength = 0) { return FindVar(aVarName, aVarNameLength, FINDVAR_GLOBAL); }
3075 // For maintainability.
3076 VarList *GlobalVars() { return &mVars; }
3077

Callers 2

DefineControlClassesMethod · 0.80
ExpandExpressionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected