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

Method RegConvertView

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

Source from the content-addressed store, hash-verified

1080 }
1081 }
1082 static DWORD RegConvertView(LPTSTR aBuf)
1083 {
1084 if (!_tcsicmp(aBuf, _T("Default")))
1085 return 0;
1086 else if (!_tcscmp(aBuf, _T("32")))
1087 return KEY_WOW64_32KEY;
1088 else if (!_tcscmp(aBuf, _T("64")))
1089 return KEY_WOW64_64KEY;
1090 else
1091 return -1;
1092 }
1093
1094 static DWORD SoundConvertControlType(LPTSTR aBuf)
1095 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected