摘要: Windows: VC编程操作注册表键值读写注册表键值的代码如下: 1 HKEY hKey; 2 LPCTSTR path = _T("Software\\IDT\\Apo\\LFX\\MicIn\\Presets\\_Initial\\BeamForming\\"); 3 LPCTSTR name = _T("Bypass"); 4 DWORD val = 0x01; 5 DWORD type = REG_DWORD; 6 DWORD cbData = sizeof(DWORD); 7 8 DWORD dwDispositi... 阅读全文
posted @ 2013-02-05 16:57 ououmiao 阅读(458) 评论(0) 推荐(0) 编辑