Reputation: 349
I'm aware of the functions like RegOpenKey, RegGetValue and etc. But I can't figure out how to get all keys and their subkeys names. How can I do such thing?
Upvotes: 0
Views: 701
Reputation: 58929
You are looking for RegEnumKeyEx and to get the values, RegEnumValue.
Upvotes: 3