The application could not start correctly (0xc0000013). Click "OK" to close the application.

I unexpectedly had this problem when starting my (previous boot) VS 2010 working project.

The application could not start correctly (0xc0000013). Click "OK" to close the application.

Debug output:

`The program '[5940] myapp.exe: Native' has exited with code -1073741805 (0xc0000013).` 
+4
source share
5 answers

STATUS_NO_MEDIA_IN_DEVICE: "There is no drive in the drive." Perhaps your working directory for debugging is configured on a USB-emulated drive that is not available.

+6
source

I suddenly had the same problem with projects in VS 2008 after some Windows updates. But after reading this topic, I decided to check% PATH% and found that some paths refer to locations on a blank DVD. Fixing the paths solved the problem. (After all, the updates are apparently not related to each other, the only thing that matters is that the media was removed from the device after a reboot.)

+4
source

It’s great that I turned off the charging of Android 2.3 and it worked.

+1
source

I had a STATUS_NO_MEDIA_IN_DEVICE error, and the problem turned out to be a missing DLL for debugging, I had to add a build step to copy it.

0
source

This error can also be caused by conflicting versions of the DLL, to find out if this is true, you can use the dependent walker , with a step-by-step guide from Code Yarns here . In my case, this was because the program was 32-bit and the required libraries were 64-bit, where 32-bit was expected.

0
source

All Articles