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