4
0
mirror of https://github.com/QuasarApp/pe-parse.git synced 2025-05-01 14:49:34 +00:00

README, examples: Fix lingering names

This commit is contained in:
William Woodruff 2020-09-25 15:51:25 -04:00
parent 327a524de1
commit eb7d72a96f
No known key found for this signature in database
GPG Key ID: 70F70A3979DDCED3
2 changed files with 2 additions and 2 deletions
README.md
examples/peaddrconv

@ -95,7 +95,7 @@ Once the library is installed, linking to it is easy! Add the following lines in
```
find_package(pe-parse REQUIRED)
target_link_libraries(your_target_name PRIVATE pe-parse::pe-parser-library)
target_link_libraries(your_target_name PRIVATE pe-parse::pe-parse)
```
You can see a full example in the [examples/peaddrconv](examples/peaddrconv) folder.

@ -6,7 +6,7 @@
#include <climits>
#include <cstring>
#include <parser-library/parse.h>
#include <pe-parse/parse.h>
using ParsedPeRef =
std::unique_ptr<peparse::parsed_pe, void (*)(peparse::parsed_pe *)>;