No symbols loaded, required BGL file errors after program execution

I downloaded Visual C++ 2005 Express today and followed the instructions to install and use the Microsoft Platform SDK. No problems so far. I can generate, build and execute a Win32 application without any problems. However, after the application exits, I get the following errors in the Output window. I really have no clue what is going wrong here. The same thing happens when I build and run an other simple W32 application that just prints a single line of text to the screen, so it's not the project itself I guess. Anyone able to shed a light on this

TIA,
Ben



'tosti.exe': Loaded 'D:\Ben\Visual Studio 2005\Projects\Hello World\debug\tosti.exe', Symbols loaded.
'tosti.exe': Loaded 'C:\WINNT\system32\NTDLL.DLL', Cannot find or open a required DBG file.
'tosti.exe': Loaded 'C:\WINNT\system32\USER32.DLL', Cannot find or open a required DBG file.
'tosti.exe': Loaded 'C:\WINNT\system32\GDI32.DLL', Cannot find or open a required DBG file.
'tosti.exe': Loaded 'C:\WINNT\system32\KERNEL32.DLL', Cannot find or open a required DBG file.
'tosti.exe': Loaded 'C:\WINNT\system32\msvcr80d.dll', No symbols loaded.
'tosti.exe': Loaded 'C:\WINNT\system32\msvcrt.dll', No symbols loaded.
'tosti.exe': Loaded 'C:\Program Files\Logitech\MouseWare\system\LgWndHk.dll', Binary was not built with debug information.
'tosti.exe': Loaded 'C:\Program Files\Common Files\Logitech\Scrolling\LGMSGHK.DLL', Binary was not built with debug information.
'tosti.exe': Loaded 'C:\WINNT\system32\msvcp60.dll', No symbols loaded.
'tosti.exe': Loaded 'C:\WINNT\system32\version.dll', Cannot find or open a required DBG file.
'tosti.exe': Loaded 'C:\WINNT\system32\lz32.dll', Cannot find or open a required DBG file.
'tosti.exe': Unloaded 'C:\WINNT\system32\version.dll'
'tosti.exe': Unloaded 'C:\WINNT\system32\lz32.dll'
The program '[840] tosti.exe: Native' has exited with code 0 (0x0).

O/S: W2000 SP4



Answer this question

No symbols loaded, required BGL file errors after program execution

  • VBNewStudent

    I can't see anything wrong with the output window. It looks normal.

    Note, that the Windows DBG files are only needed if you're debugging Windows itself. Since you're only debugging your own program (not Windows), you don't need the Windows Debug symbols. So those messages are perfectly normal.

    Is there any problem with your program



  • AnuR

    Ah ok. I'm new to VC++ so I thought the compiler was giving me errors about missing files or something. There are no other problems with my program so I can continue learning C++.
    Thanks for your help.

  • Tammy P

    Where can I find the debug symbols for the system files I want to set breakpoints on a few system calls. There are some internal download links on the MSDN pages, but they're all dead.

    /Jorn


  • No symbols loaded, required BGL file errors after program execution