sdl 设置 Visual Studio 2010

发布于 2024-09-10 12:06:36 字数 735 浏览 4 评论 0原文

我无法启动并运行 sdl。我包含了包含文件夹、库文件夹

,这是代码

#include <SDL.h>

int main()
{
    if (SDL_Init(SDL_INIT_VIDEO)==-1)
    {

        return 1;
    }

    SDL_Quit();
    return 0;
}

我做错了什么?

它给了我这个错误消息

Error   1   error LNK2019: unresolved external symbol _SDL_main referenced in function _main    c:\Users\user1\documents\visual studio 2010\Projects\Sdl Test 1\Sdl Test 1\SDLmain.lib(SDL_win32_main.obj)  Sdl Test 1
Error   2   error LNK1120: 1 unresolved externals   c:\users\user1\documents\visual studio 2010\Projects\Sdl Test 1\Debug\Sdl Test 1.exe    1   1   Sdl Test 1

编辑:我让它工作这是因为我没有使用这个

int main(int argc, char* argv[])

I can not get sdl up and running. I included the include folder, the library folder

and here is the code

#include <SDL.h>

int main()
{
    if (SDL_Init(SDL_INIT_VIDEO)==-1)
    {

        return 1;
    }

    SDL_Quit();
    return 0;
}

what am i doing wrong?

It gives me this error message

Error   1   error LNK2019: unresolved external symbol _SDL_main referenced in function _main    c:\Users\user1\documents\visual studio 2010\Projects\Sdl Test 1\Sdl Test 1\SDLmain.lib(SDL_win32_main.obj)  Sdl Test 1
Error   2   error LNK1120: 1 unresolved externals   c:\users\user1\documents\visual studio 2010\Projects\Sdl Test 1\Debug\Sdl Test 1.exe    1   1   Sdl Test 1

EDIT: I got it working It is because I did not use this

int main(int argc, char* argv[])

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷了相思 2024-09-17 12:06:36

编辑:我让它工作了这是因为我没有使用这个

int main(int argc, char* argv[])

EDIT: I got it working It is because I did not use this

int main(int argc, char* argv[])

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文