Hi,
I use Visual C++ 2010 EE and receive this output:
Error 3 error LNK1120: 1 unresolved externals C:\Users\Ivan\Documents\Visual Studio 2010\Projects\NeHe\en_NeHe_Lesson_01\Debug\Lesson_06.exe 1
Hi,
I use Visual C++ 2010 EE and receive this output:
Error 3 error LNK1120: 1 unresolved externals C:\Users\Ivan\Documents\Visual Studio 2010\Projects\NeHe\en_NeHe_Lesson_01\Debug\Lesson_06.exe 1
There is the solution in the post #4 http://www.gamedev.net/topic/275238-gluax-replacement-code/
I included "bmp.h" and deleted this line
#include <gl\glaux.h> // Header File For The Glaux Library
It works and for the lesson number 10 "Loading And Moving Through A 3D World" http://nehe.gamedev.net/tutorial/loading_and_moving_through_a_3d_world/22003/
I added to "main.cpp" this line:
#include "bmp.h"
And deleted this line from "main.cpp":
#include <gl\glaux.h> // Header File For The Glaux Library
"bmp.h" and "bmp.cpp" I took from the post #4 http://www.gamedev.net/topic/275238-gluax-replacement-code/