This is my first post. Huzzah!
I've been coding in a higher level (meaning easier) programming language known as BYOND for years, but after an intro. to computer sci. class in college, I feel obliged to try something a bit harder.
My first problem is that I'm getting this error after I followed the first tutorial (mind you I'm using Microsoft Visual C++ 2005 Express Edition).
To be honest at school I just used a command prompt and g++ compiled everything (and everything was in one code file, and quite simple - and boring), but I'm trying to use this IDE, which is proving to be quite confusing. Anyways, here's the error:
Code: Select all
'irrlicht_test.exe': Loaded 'D:\My Documents\Visual Studio 2005\Projects\irrlicht_test\debug\irrlicht_test.exe', Binary was not built with debug information.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded.
Debugger:: An unhandled non-continuable STATUS_DLL_NOT_FOUND exception was thrown during process load
The program '[3708] irrlicht_test.exe: Native' has exited with code -1073741515 (0xc0000135).
I tried searching these forums so that I wouldn't be bothering you fine folks. However all I came up with was to add the Irrlicht.dll directly to my project file. But this produced this:
Code: Select all
'irrlicht_test.exe': Loaded 'D:\My Documents\Visual Studio 2005\Projects\irrlicht_test\debug\irrlicht_test.exe', Binary was not built with debug information.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'D:\My Documents\Visual Studio 2005\Projects\irrlicht_test\irrlicht_test\Irrlicht.dll', Binary was not built with debug information.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\user32.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\gdi32.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\advapi32.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\rpcrt4.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\opengl32.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\glu32.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\ddraw.dll', No symbols loaded.
'irrlicht_test.exe': Loaded 'C:\WINDOWS\system32\dciman32.dll', No symbols loaded.
The program '[2660] irrlicht_test.exe: Native' has exited with code 0 (0x0).
Any help is appreciated.