missing dll's

I just set up visual studio 2010 and made a simple hello world program
but i'm getting a weird runtime error anyone that knows how to fix this ?

1
2
3
4
5
6
7
#include<iostream>

int main(){
	std::cout << "hello world"<< std::endl;
	std::cin.get();
	return 0;
}

1
2
3
4
5
6
7
8
'testproject.exe': Loaded 'C:\Users\sumsar\Documents\Visual Studio 2010\Projects\testproject\Debug\testproject.exe', Symbols loaded.
'testproject.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'testproject.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'testproject.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'testproject.exe': Loaded 'C:\Windows\SysWOW64\msvcp100d.dll', Symbols loaded.
'testproject.exe': Loaded 'C:\Windows\SysWOW64\msvcr100d.dll', Symbols loaded.
The thread 'Win32 Thread' (0x18f4) has exited with code -1073741510 (0xc000013a).
The program '[6148] testproject.exe: Native' has exited with code -1073741510 (0xc000013a).
Those messages are not missing DLLs.

A program database (PDB) file holds debugging and project state information that allows incremental linking of a Debug configuration of your program
http://msdn.microsoft.com/en-us/library/yd4f8bd1(v=vs.71).aspx

Microsoft does not release the PDB files for Windows DLLs, since you don't need them to debug your program. Note that the symbols for the Visual C run time (msvcp100d) were loaded.

okay thanks
Topic archived. No new replies allowed.