My application calls LoadLibraryA to dynamically load a dll. This works perfectly fine on Windows-7 with VS-2013 but errors out on Windows-10(UWP) with VS-2015.
The app is written in Java which tries to load our native dll(written in C++)
On Windows-10 I get error 126 from GetLastError()
The specified module could not be found
I do not see any issue in the dll path specified to the LoadLibraryA function as the very same path works as expected in Windows-7.
Seems like Dependency Walker is unavailable for Windows-10. Again I do not suspect any issue with dependencies as loading dll is working without errors on my Windows-7