| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected