HKEY
常見例句
- HKEY Handle to a registry key.
登記關鍵字句柄。 - HKEY hKey; LPCTSTR data_Set= Software\\Microsoft\\Windows\\CurrentVersion\\Run ; char strFileName[128]; ::GetModuleFileName(NULL, strFileName, sizeof(strFileName)); LPCTSTR lpPath...
大家來幫幫忙,注冊表寫不進去?。▽崿F(xiàn)開機自動運行) - Success = RegOpenKeyEx(KeyRoot, KeyName, 0, KEY_ALL_ACCESS, hKey
打開一個已存在的注冊表關鍵字。。。 - RegEnumValue(hKey, dwIndex, EnvironVariable, &dwVariableLength, NULL, NULL, NULL, NULL);
// 查詢我們需要的信息值; - LONG RegCreateKey( HKEY hKey , // handle to an open key LPCTSTR lpSubKey , // subkey name PHKEY phkResult // buffer for key handle );
首先介紹RegCreateKey函數(shù);該函數(shù)將創(chuàng)建指定的注冊表項;如果這個表項已經(jīng)存在;則該函數(shù)將打開這個表項. 返回 HKEY