Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Registry Functions

Status
Not open for further replies.

felixsoft

Programmer
Nov 8, 2001
15
US
Can anyone tell me how to edit a dword registry value in c++? Please include example source. Thanx
 
Code:
LONG RegSetValueEx(
  HKEY hKey,           // handle to key
  LPCTSTR lpValueName, // value name
  DWORD Reserved,      // reserved
  DWORD dwType,        // value type
  CONST BYTE *lpData,  // value data
  DWORD cbData         // size of value data
);

See MSDN for more info
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top