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...
大家來幫幫忙,注冊表寫不進去!(實現開機自動運行) - 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函數;該函數將創建指定的注冊表項;如果這個表項已經存在;則該函數將打開這個表項. 返回 HKEY