Hi, I'm studying OpenGL Programming in http://nehe.gamedev.net/
I'm in Tutorial #0 right now. (http://nehe.gamedev.net/tutorial/creating_an_opengl_window_(win32)/13001/)
I read the whole page, and coded all source code in my Visual Studio 2015.
I have a problem in all strings.
For example,
MessageBox(NULL, "Release Of DC And RC Failed", "SHUTDOWN ERROR", MB_OK | MB_ICONINFORMATION);
there I have 2 errors in between \" respectively.
I found the solution that include tchar.h header file and modify the code like :
MessageBox(NULL, _T("Release Of DC And RC Failed"), _T("SHUTDOWN ERROR"), MB_OK | MB_ICONINFORMATION);
then, there are no red underline now, but I still have a trouble.
in the code: