I have a couple questions about using Volume Shadow Copy Service for my QT C++ program.
- I read that in order to use VSS you must be running native 32/64 bit no WOW64 supported. So this means I need to compile my program in whatever bits Windows is using on the computer where the program exe is running correct?
- Do I need to use MSVC or can I do this using MinGW?
- If I need MSVC how do I do a static build for 32 and 64 bit? I found the first 4 links on google for "qt msvc static build" but they all vary a little bit so I'm wondering which is the best to use.
- Also for either MSVC or MinGW do I need to include VSS libraries in the project? I need to get the VSS SDK correct? How do I integrate such into the program? I already know the code to use.
Thanks :)