Registry icon indicating copy to clipboard operation
Registry copied to clipboard

C++ wrapper for manipulating Windows registry

Results 4 Registry issues
Sort by recently updated
recently updated
newest added

I can add it myself. Do you accept changes in your code?

I need to delete a registry key in my application, so, is this library can do it? I saw that in the readme file, these two items are empty Deleting...

Registry project uses REG_NOTIFY_THREAD_AGNOSTIC define. But this define is only supports from Windows 8. Possible fix can be implemented in such way: ``` #if (WINVER >= 0x0602) ThreadAgnostic = REG_NOTIFY_THREAD_AGNOSTIC...

Comment all class members with [XML Documentation comments](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/xmldoc/xml-documentation-comments)

help wanted