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

Method ConvertStringCaseSense

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

Source from the content-addressed store, hash-verified

1181 }
1182
1183 static StringCaseSenseType ConvertStringCaseSense(LPTSTR aBuf)
1184 {
1185 if (!_tcsicmp(aBuf, _T("On")) || !_tcscmp(aBuf, _T("1"))) return SCS_SENSITIVE;
1186 if (!_tcsicmp(aBuf, _T("Off")) || !_tcscmp(aBuf, _T("0"))) return SCS_INSENSITIVE;
1187 if (!_tcsicmp(aBuf, _T("Locale"))) return SCS_INSENSITIVE_LOCALE;
1188 return SCS_INVALID;
1189 }
1190
1191 static ToggleValueType ConvertBlockInput(LPTSTR aBuf)
1192 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected