mirror of
https://github.com/debauchee/barrier.git
synced 2025-06-20 11:37:03 +02:00
Changes from mercurial repository.
This commit is contained in:
parent
44bb32f476
commit
98c68897d8
135 changed files with 2686 additions and 26965 deletions
|
@ -252,7 +252,7 @@ CArchMiscWindows::setValue(HKEY key,
|
|||
assert(name != NULL);
|
||||
RegSetValueEx(key, name, 0, REG_SZ,
|
||||
reinterpret_cast<const BYTE*>(value.c_str()),
|
||||
value.size() + 1);
|
||||
(DWORD)value.size() + 1);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -273,7 +273,7 @@ CArchMiscWindows::setValueBinary(HKEY key,
|
|||
assert(name != NULL);
|
||||
RegSetValueEx(key, name, 0, REG_BINARY,
|
||||
reinterpret_cast<const BYTE*>(value.data()),
|
||||
value.size());
|
||||
(DWORD)value.size());
|
||||
}
|
||||
|
||||
std::string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue