Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Entry Point Not Found - Completely flummoxed  (Read 4189 times)

0 Members and 1 Guest are viewing this topic.

astr0wiz

  • Newbie
  • *
  • Posts: 4
    • View Profile
    • Email
Entry Point Not Found - Completely flummoxed
« on: October 02, 2016, 09:07:34 pm »
Here is the extremely simple test code I am attempting to run:

#include <SFML/Graphics.h>


int main()
{
    sfVideoMode mode = {400, 400, 32};
    sfRenderWindow* window;

    window = sfRenderWindow_create(mode, "CSFML Test", sfResize | sfClose, NULL);

    while (sfRenderWindow_isOpen(window))
    {
        sfRenderWindow_display(window);
    }
    return 0;
}

It compiles just fine in Code::Blocks.  When I run, I get the following popup:



Having successfully created several C++ SFML projects, I find myself at a complete loss.  I have no idea why that particular entry point wasn't found.  I suspected it was with opengl32.dll, so I copied it into the bin directory of the executable, but nothing changed.

Any suggestions?

Edit:
I am using the latest version of CSFML, compiled on my machine after running CMake and then using Code::Blocks to build it all.
« Last Edit: October 02, 2016, 09:09:32 pm by astr0wiz »

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10819
    • View Profile
    • development blog
    • Email
AW: Entry Point Not Found - Completely flummoxed
« Reply #1 on: October 02, 2016, 09:25:41 pm »
If had tried to google the error you would've found out, that this happens when you get a mismatch between runtime libraries, meaning that your compiler version doesn't seem to line up with the compiler version used to compile SFML which gets used internally of CSFML.

It may also just be that you're using an old runtime DLL somewhere.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

astr0wiz

  • Newbie
  • *
  • Posts: 4
    • View Profile
    • Email
Re: Entry Point Not Found - Completely flummoxed
« Reply #2 on: October 03, 2016, 01:49:30 am »
Thank you for the reply.  :) Well, I did find something like that after a short search, but I discounted it because I used MinGW for both.  In fact, I compiled SFML just minutes prior to compiling CSFML.  I am going to take a closer look at how I've set up the directories and references for CSFML, as I think that may be where I've screwed things up.  Ideally, I had hoped someone else ran into the very same situation, but I have obviously set something up wrong.  I will add another reply when I make a breakthrough.

 

anything