-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4987197
commit e8f31a3
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule libpeconv
updated
19 files
+1 −1 | README.md | |
+2 −0 | libpeconv/CMakeLists.txt | |
+1 −0 | libpeconv/include/peconv.h | |
+20 −0 | libpeconv/include/peconv/exceptions_parser.h | |
+1 −1 | libpeconv/include/peconv/exports_lookup.h | |
+4 −4 | libpeconv/include/peconv/pe_loader.h | |
+1 −1 | libpeconv/include/peconv/peb_lookup.h | |
+56 −0 | libpeconv/src/exceptions_parser.cpp | |
+2 −2 | libpeconv/src/exported_func.cpp | |
+3 −3 | libpeconv/src/exports_lookup.cpp | |
+3 −1 | libpeconv/src/fix_imports.cpp | |
+14 −2 | libpeconv/src/pe_virtual_to_raw.cpp | |
+4 −4 | libpeconv/src/peb_lookup.cpp | |
+11 −0 | tests/CMakeLists.txt | |
+2 −0 | tests/main.cpp | |
+16 −0 | tests/test_case7/CMakeLists.txt | |
+32 −0 | tests/test_case7/main.cpp | |
+48 −0 | tests/test_exceptions.cpp | |
+9 −0 | tests/test_exceptions.h |