Lines Matching refs:hSectionKey
92 HKEY hSectionKey = GetSectionKey(hAppKey, "VisVim"); in SetApplicationObject() local
93 if (hSectionKey) in SetApplicationObject()
95 g_bEnableVim = GetRegistryInt(hSectionKey, "EnableVim", in SetApplicationObject()
97 g_bDevStudioEditor = GetRegistryInt(hSectionKey, in SetApplicationObject()
99 g_bNewTabs = GetRegistryInt(hSectionKey, "NewTabs", in SetApplicationObject()
101 g_ChangeDir = GetRegistryInt(hSectionKey, "ChangeDir", in SetApplicationObject()
103 RegCloseKey(hSectionKey); in SetApplicationObject()
391 HKEY hSectionKey = GetSectionKey(hAppKey, "VisVim"); in BEGIN_MESSAGE_MAP() local
392 if (hSectionKey) in BEGIN_MESSAGE_MAP()
394 WriteRegistryInt(hSectionKey, "DevStudioEditor", in BEGIN_MESSAGE_MAP()
396 WriteRegistryInt(hSectionKey, "NewTabs", in BEGIN_MESSAGE_MAP()
398 WriteRegistryInt(hSectionKey, "ChangeDir", g_ChangeDir); in BEGIN_MESSAGE_MAP()
399 RegCloseKey(hSectionKey); in BEGIN_MESSAGE_MAP()
491 HKEY hSectionKey = GetSectionKey(hAppKey, "VisVim"); in VimSetEnableState() local
492 if (hSectionKey) in VimSetEnableState()
493 WriteRegistryInt(hSectionKey, "EnableVim", g_bEnableVim); in VimSetEnableState()