Syntax seemed to be confusing according to the Bill
This commit is contained in:
parent
ebbcc3c97d
commit
41bd8eff90
@ -346,17 +346,15 @@ bool cmSystemTools::WriteRegistryValue(const char *key, const char *value)
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if(RegSetValueEx(hKey,
|
||||||
|
(LPTSTR)valuename.c_str(),
|
||||||
|
0,
|
||||||
|
REG_SZ,
|
||||||
|
(CONST BYTE *)value,
|
||||||
|
(DWORD)(strlen(value) + 1)) == ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
if(RegSetValueEx(hKey,
|
return true;
|
||||||
(LPTSTR)valuename.c_str(),
|
|
||||||
0,
|
|
||||||
REG_SZ,
|
|
||||||
(CONST BYTE *)value,
|
|
||||||
(DWORD)(strlen(value) + 1)) == ERROR_SUCCESS)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user