| 585 | }; |
| 586 | |
| 587 | HKEY Line::RegConvertRootKeyType(LPTSTR aName) |
| 588 | { |
| 589 | for (int i = 0; i < _countof(sRegRootKeyTypes); ++i) |
| 590 | if (!_tcsicmp(aName, sRegRootKeyTypes[i].short_name) |
| 591 | || !_tcsicmp(aName, sRegRootKeyTypes[i].long_name)) |
| 592 | return sRegRootKeyTypes[i].key; |
| 593 | return NULL; |
| 594 | } |
| 595 | |
| 596 | LPTSTR Line::RegConvertRootKeyType(HKEY aKey) |
| 597 | { |
nothing calls this directly
no outgoing calls
no test coverage detected