Skip to content

Commit

Permalink
Merge pull request #26 from GiovanniDicanio/removed-uniform-brace-init
Browse files Browse the repository at this point in the history
Removed uniform brace initialization
  • Loading branch information
GiovanniDicanio authored Apr 24, 2020
2 parents 5102b65 + d660318 commit 1dfd91d
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 194 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WinReg v2.2.2
# WinReg v2.2.3
## High-level C++ Wrapper Around the Low-level Windows Registry C-interface API

by Giovanni Dicanio
Expand Down Expand Up @@ -40,7 +40,7 @@ There are many member functions inside the `RegKey` class, that wrap many parts
For example, you can simply open a registry key and get registry values with C++ code like this:

```c++
RegKey key{ HKEY_CURRENT_USER, L"SOFTWARE\\SomeKey" };
RegKey key(HKEY_CURRENT_USER, L"SOFTWARE\\SomeKey");

DWORD dw = key.GetDwordValue (L"SomeDwordValue");
wstring s = key.GetStringValue(L"SomeStringValue");
Expand Down
Loading

0 comments on commit 1dfd91d

Please sign in to comment.