Home > front end >  How to list all registry keys and their subkeys names using Win API (C )?
How to list all registry keys and their subkeys names using Win API (C )?

Time:09-09

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?

CodePudding user response:

You are looking for RegEnumKeyEx and to get the values, RegEnumValue.

  • Related