Problems with debug in .NET w/ C++ (unmanaged)

wyrd

Well-known member
Joined
Aug 23, 2002
Messages
1,408
Location
California
Im using VS .NET 2002, creating a win32 unmanaged C++ project.

When trying to run a program in debug mode (it compiles fine), I get the output below, and my program crashes. I should note that it compiles and runs fine in release, however the errors still do appear. Any ideas? :\

GameLib.exe: Loaded C:\Documents and Settings\Administrator\My Documents\Game Projects\GameLib\GameLib\Debug\GameLib.exe, Symbols loaded.
GameLib.exe: Loaded C:\WINNT\system32\NTDLL.DLL, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\USER32.DLL, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\KERNEL32.DLL, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\GDI32.DLL, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\CTAGENT.DLL, No symbols loaded.
GameLib.exe: Loaded C:\WINNT\system32\ADVAPI32.DLL, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\rpcrt4.dll, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\OLE32.DLL, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\dsound.dll, No symbols loaded.
GameLib.exe: Loaded C:\WINNT\system32\msvcrt.dll, No symbols loaded.
GameLib.exe: Loaded C:\WINNT\system32\winmm.dll, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\version.dll, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\lz32.dll, Cannot find or open a required DBG file.
GameLib.exe: Loaded C:\WINNT\system32\mmdrv.dll, Cannot find or open a required DBG file.
GameLib.exe: Unloaded C:\WINNT\system32\mmdrv.dll
GameLib.exe: Loaded C:\Program Files\AIM\idlemon.dll, No symbols loaded.
The program [808] GameLib.exe: Native has exited with code 0 (0x0).
 
Back
Top