Lines Matching refs:hKey
166 HKEY hKey, hTmp; in openkey() local
167 for (hKey = hStart; *keys; keys++) in openkey()
170 hTmp = hKey; in openkey()
171 res = RegOpenKey (hTmp, *keys, &hKey); in openkey()
179 return hKey; in openkey()
186 HKEY hKey, hTmp; in mingw_rootify() local
193 hKey = openkey (HKEY_LOCAL_MACHINE, mingw_keys); in mingw_rootify()
196 if (!hKey) in mingw_rootify()
201 if (RegQueryInfoKey (hKey, NULL, NULL, NULL, NULL, &maxlen, NULL, NULL, in mingw_rootify()
204 RegCloseKey (hKey); in mingw_rootify()
212 RegCloseKey (hKey); in mingw_rootify()
223 for (i = 0; RegEnumKey (hKey, i, namebuf, maxlen) == ERROR_SUCCESS; i++) in mingw_rootify()
239 RegCloseKey (hKey); in mingw_rootify()
244 res = RegOpenKey (hKey, foundbuf, &hTmp); in mingw_rootify()
245 RegCloseKey (hKey); in mingw_rootify()