VS2013 OpenGL MFC 编程问题

1、编译时出现 warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead:

右键project ->properties -> Configuration Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions ,Edit 后 在上面框添加  _CRT_SECURE_NO_WARNINGS

即可解决;


2、创建MFC界面时,需要添加链接器lib内容:右键project ->properties -> Configuration Properties -> Linker -> Input ->Additional Dependencies, 选择 Edit 添加

opengl32.lib
glu32.lib
glaux.lib

以后需要什么lib文件都是在这添加


3、出现 error LNK2026: module unsafe for SAFESEH image. 问题解决:将下面的 "Image Has...." 选项设成下面的 No (/SAFESEH:NO)

VS2013 OpenGL MFC 编程问题_第1张图片

如果还是有问题,可以在下面这个地方添加一句  “/SAFESEH:NO”

VS2013 OpenGL MFC 编程问题_第2张图片


4、出现 error C2664: 'int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)' : cannot convert argument 1 from 'const char [25]' to 'LPCTSTR' 

可在传的 char * 参数前加上字母 L,如 MessageBox(L"SetPixelFormat failed");  下图所示,没加 L 的话有报错,当然也可以上微软官网下载某个exe程序安装,具体可自己谷歌,像我这种安装失败的,只能尝试这种办法了

VS2013 OpenGL MFC 编程问题_第3张图片


你可能感兴趣的:(mfc,OpenGL,VS2013)