Reputation: 21
I am writing a simple File Handling program in Visual Studio 2012 c++ program and when i build my program following lines appears in error window.What does it mean??
'file_handling_c++.exe' (Win32): Loaded 'D:\MyCSharp\VS2012\file_handling_c++\Debug\file_handling_c++.exe'. Symbols loaded.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp110d.dll'. Symbols loaded.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcr110d.dll'. Symbols loaded.
The program '[1368] file_handling_c++.exe' has exited with code 0 (0x0).
Upvotes: 0
Views: 178
Reputation: 5680
I guess you are talking about these lines:
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'file_handling_c++.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
That just means that the debugger couldn't find debug symbols (PDB files) for the mentioned dlls. That's nothing to worry about.
You might want to check out Wikipedia to get more information about these files: https://en.wikipedia.org/wiki/Debug_symbol
BTW: This is no error - just some information.
Upvotes: 1