| 564 | } |
| 565 | |
| 566 | LONG SetBoolRegKey(HKEY hKey, LPCSTR strValueName, bool bValue) |
| 567 | { |
| 568 | return SetDWORDRegKey(hKey, strValueName, (bValue ? 1 : 0)); |
| 569 | } |
| 570 | |
| 571 | LONG SetStringRegKey(HKEY hKey, LPCSTR strValueName, char* strValue) |
| 572 | { |
no test coverage detected