Now the Minidump parser can parse the:
- MemoryInfoList - containing region info about memory ranges (readable, writable, executable)
- Memory64List - this is the stuct used when the Minidump is a full-memory one.
- Adding filtering of the module list (shared libraries list) - there can be mutliple records in the module list under the same name but with different load address (e.g. when the binary has non contigious sections). GetFilteredModuleList eliminates the duplicated modules, leaving the one with the lowest load addr.
Added unit tests for everything.