gpt4 book ai didi

c++ - OpenGl - 未解析的外部符号 __imp____iob_func 被引用

转载 作者:行者123 更新时间:2023-11-28 05:43:29 25 4
gpt4 key购买 nike

<分区>

编辑:在发现 sb6 头文件使用 windows 子系统后,我将子系统从 Console (/SUBSYSTEM:CONSOLE) 更改为 Windows (/SUBSYSTEM:WINDOWS)。

当我编译这段代码时。

// Include the "sb6.h" header file
#include "sb6.h"
// Derive my_application from sb6::application
class my_application : public sb6::application
{
public:
// Our rendering function
void render(double currentTime)
{
// Simply clear the window with red
static const GLfloat red[] = { 1.0f, 0.0f, 0.0f, 1.0f };
glClearBufferfv(GL_COLOR, 0, red);
}
};
// Our one and only instance of DECLARE_MAIN
DECLARE_MAIN(my_application);

我得到这些错误

LNK2019 unresolved external symbol __imp____iob_func referenced in function __glfwPlatformOpenWindow

LNK4217 locally defined symbol _fprintf imported in function __glfwPlatformOpenWindow

我确实将所有库和包含文件夹链接到 VC++ 目录,而且我在包含所有预处理器的正确子系统中。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com