我目前正在开发Visual Studio扩展项目,我需要在c ++代码中阅读 CurrentTheme 注册表值。为此我写了以下代码
CRegKey RegKey;
LPCTSTR keyName; // Software\Microsoft\VisualStudio\{0}\General
//LPTSTR keyValue;
#if _MSC_VER >= 1600 && _MSC_VER < 1700 // VS 2010
keyName = _T("Software\\Microsoft\\VisualStudio\\10.0\\General");
#elif _MSC_VER >= 1700 && _MSC_VER < 1800 // VS 2012
keyName = _T("Software\\Microsoft\\VisualStudio\\11.0\\General");
#elif _MSC_VER >= 1800 && _MSC_VER < 1900 // VS 2013
keyName = _T("Software\\Microsoft\\VisualStudio\\12.0\\General");
#elif _MSC_VER >= 1900 && _MSC_VER < 2000 // VS 2015
keyName = _T("Software\\Microsoft\\VisualStudio\\14.0\\General");
#endif
LONG lResult = RegKey.Open( HKEY_CURRENT_USER, keyName, KEY_READ );
MessageBox(NULL, _MSC_VER , _T("Msg"), MB_OK | MB_ICONERROR);
if( ERROR_SUCCESS != lResult )
{
return false;
}
ULONG chars;
CString keyValue;
if (RegKey.QueryStringValue(L"CurrentTheme", 0, &chars) == ERROR_SUCCESS)
{
RegKey.QueryStringValue(L"CurrentTheme", keyValue.GetBuffer(chars), &chars);
keyValue.ReleaseBuffer();
MessageBox(NULL, keyValue , _T("Msg"), MB_OK | MB_ICONERROR);
}
RegKey.Close();
但_MSC_VER
似乎在编译时产生了价值。我需要动态创建Software\Microsoft\VisualStudio\{0}\General
值,以便了解我的插件项目运行的VisualStudio版本。有人可以帮我吗?
答案 0 :(得分:0)
我找到了解决方法。我使用当前运行的devenv.exe
处理程序并导航到它的包定义文件devenv.pkgdef
并读取该文件中写入的RegistryRoot
值。这给出了我正在搜索的Software\Microsoft\VisualStudio\xx.0
值。