| 65 | } |
| 66 | |
| 67 | void BoxedReg::writeKeyDword(const char* path, const char* key, U32 value) { |
| 68 | BString v = B("dword:"); |
| 69 | v.append(value, 16); |
| 70 | writeKey(path, key, v.c_str(), false); |
| 71 | } |
| 72 | |
| 73 | void BoxedReg::writeKey(const char* path, const char* key, const char* value, bool useQuotesAroundValue) { |
| 74 | bool found = false; |
no test coverage detected