In order to share some code between normal Windows debugging and Windows mini dump debugging, this is just a shuffling of files into a different hierarchy.
source/Plugins/Process/Windows/Common
Common code for the two Windows Process Plugins. Currently, this is just ExceptionRecord.h, but I expect this to grow as the mini dump plugin is fleshed out. This code cannot live at a higher level (e.g., in Process/Utility) because it includes Windows-specific files.
source/Plugins/Process/Windows/Live
Code for normal Windows debugging. This used to be one level higher.
source/Plugins/Process/Windows/MiniDump
Code for mini dump debugging.
Other than moving files, this includes a few necessary tweaks to CMakeLists and #include statements to reflect the new hierarchy.