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