我想開始學習opengl,我使用VS2010最終的SP1,但是當我添加opengl頭文件時,我收到錯誤信息,表明在我創建的文件中有錯誤。VS2010中的OpenGl
#include "stdafx.h"
#include <Windows.h>
#include <gl\GL.h>
#include <gl\GLU.h>
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
錯誤(195個),這是我認爲最常見的一種:
錯誤1個錯誤C2008: '$':在宏定義Ç意外:\ Program Files文件\微軟的SDK \的Windows \ V7。 0A \ include \ driverspecs.h 142
您是否嘗試過使用GLee? (http://www.opengl.org/sdk/libs/GLee/) – James
什麼是**第一個**錯誤信息? –
顯然_PREFAST _宏被定義。但我真的不知道是什麼原因造成的。當你使用VS2010終極版時,你可能會打開一個導致這個錯誤的選項。 Google透露它可能與一些代碼分析工具(稱爲PREfast)有關。作爲解決方法,請嘗試使用默認選項重新創建項目。 –