SFML community forums
Help => System => Topic started by: FrewCen on February 29, 2012, 07:20:42 am
-
Ok, hi all.
Today I have new problem.
My code + error:
(http://img13.imageshack.us/img13/4161/0e934759b80148858bce88b.png)
It is something like:
fatal error LNK1107: invalid or corrupt file: cannot read at 0x2B8 - sfml-system.dll
fatal error LNK1107: invalid or corrupt file: cannot read at 0x2A8 - sfml-window.dll
fatal error LNK1107: invalid or corrupt file: cannot read at 0x2B0 - sfml-graphics.dll
So does anybody know how to repair it? Please help me.
J.F.I.: On Visual Studio 2010 Proffessional I'm getting debug error, not LNK error...
-
If you had googled the error code LNK1107 you would have found on the first entry the following answer (http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/b307bf26-2441-438f-960d-6b54db83fd6d)...
How you are including a DLL into a project?
You need to add the lib file to the linker options not the DLL!
PS: To google, go to www.google.com and enter a search term into the textbox, then hit the return key. :P
-
I'm new to C++ but isn't
using namespace sf;
and then
sf::Event
completely wrong?
-
It's optional. You can still do it, cause there might be disambiguos cases otherwise (e.g. two namespaces with the same class inside).