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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BoingBoing

Pages: [1] 2
1
Network / SFML Window and Packet frozen
« on: January 11, 2010, 09:22:41 am »
I'm a newbie, do you got any tutorials or examples on how to do multithreading?

2
Network / SFML Window and Packet frozen
« on: January 11, 2010, 04:16:57 am »
I could receive packets and send them but the SFML window just freezes.
Code: [Select]
#ifdef _WIN32
//#include <windows.h>
#endif

#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>
#include <SFML/Window/Event.hpp>
#include <SFML/Network.hpp>
#include <sys/timeb.h>
#include <time.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <cstdlib>
#include <string.h>
#include <iostream>
#include <fstream>
using namespace std;

sf::Clock Clock;
sf::RenderWindow App;

float CurTime( void )
{
return Clock.GetElapsedTime();
}

void Initialize();
void Draw();
void Think();
void KeyPress(sf::Key::Code Key);
void KeyReleased(sf::Key::Code Key);
void OnRecieve(const char* Message);
float NextThink = 0;
sf::SocketTCP Client;

int main()
{
App.Create(sf::VideoMode(640, 480), "MMOClient v0.1");

ifstream ipfile("ip.txt",ios::in);
    sf::IPAddress ServerAddress;
ipfile >> ServerAddress;
ipfile.close();
const unsigned short Port = 2435;
if (Client.Connect(Port,ServerAddress) == sf::Socket::Done)
{
std::cout << "Connected to server " << ServerAddress << std::endl;
} else {
App.Close();
}

//Initialize();
bool isrunning = true;
while (isrunning)
{
sf::Packet p;
std::string s;
if (Client.Receive(p) == sf::Socket::Done)
{
p >> s;
std::cout << s << std::endl;
}
char ToSend[] = "w-off";
Client.Send(ToSend, sizeof(ToSend));
App.Clear();
Draw();
App.Display();
}
    /*while (App.IsOpened())
    {
        sf::Event Event;
        while (App.GetEvent(Event))
        {
            if (Event.Type == sf::Event::Closed)
                App.Close();
if (Event.Type == sf::Event::KeyPressed)
KeyPress(Event.Key.Code);
if (Event.Type == sf::Event::KeyReleased)
KeyReleased(Event.Key.Code);
        }

//if (Client.Receive(Message, sizeof(Message), Received))
//{
//OnRecieve(Message);
//}
if (NextThink < CurTime())
{
NextThink = CurTime() + 0.02;
Think();
}
App.Clear();
Draw();
App.Display();
    }*/
Client.Close();
    return EXIT_SUCCESS;
}

3
Network / Problem with receiving sf::Packet
« on: January 10, 2010, 10:42:58 pm »
Code: [Select]

char Message[128] = "";
std::size_t Received;
Client.Receive(Message, sizeof(Message), Received);

Also crashes my application. This seems to happen only when I create an SFML window, my server seems fine as a console.

4
SFML projects / [09.11.09] JeZ+Lee's"The Final Option 100%™"SOURCE
« on: September 02, 2009, 08:27:57 am »
I don't believe it's 2010 yet.

That being said, I can't tell what the heck it is.

Is the window frame supposed to be it?

5
General / Static Library Link Errors
« on: August 30, 2009, 09:24:47 pm »
I switched to Code::Blocks,
no more errors.  :P

For some reason Code::Blocks doesn't want to compile now.

Code: [Select]

-------------- Build: Release DLL_Win32 in sfml-system ---------------

Compiling: ..\..\src\SFML\System\Lock.cpp
Compiling: ..\..\src\SFML\System\Randomizer.cpp
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp:50: error: `unsigned int sf::Randomizer::ourSeed' is not a static member of `class sf::Randomizer'
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp: In static member function `static void sf::Randomizer::SetSeed(unsigned int)':
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp:60: error: `ourSeed' was not declared in this scope
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp:60: warning: unused variable 'ourSeed'
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp: In static member function `static unsigned int sf::Randomizer::GetSeed()':
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp:69: error: `ourSeed' was not declared in this scope
C:\Users\Henry\Documents\trunk\src\SFML\System\Randomizer.cpp:69: warning: unused variable 'ourSeed'
Process terminated with status 1 (0 minutes, 0 seconds)
3 errors, 2 warnings
 


It compiled system.lib earlier and I didn't make any changes.

6
General / Static Library Link Errors
« on: August 30, 2009, 10:44:19 am »
Compiled pong.

Code: [Select]
1>------ Build started: Project: sfml-window, Configuration: Release DLL Win32 ------
1>Linking...
1>   Creating library C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\build\vc2005\..\..\lib\vc2005\sfml-window.lib and object C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\build\vc2005\..\..\lib\vc2005\sfml-window.exp
1>VideoModeSupport.obj : error LNK2019: unresolved external symbol __imp__EnumDisplaySettingsA@12 referenced in function "public: static class sf::VideoMode __cdecl sf::priv::VideoModeSupport::GetDesktopVideoMode(void)" (?GetDesktopVideoMode@VideoModeSupport@priv@sf@@SA?AVVideoMode@3@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__DispatchMessageA@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::ProcessEvents(void)" (?ProcessEvents@WindowImplWin32@priv@sf@@EAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__TranslateMessage@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::ProcessEvents(void)" (?ProcessEvents@WindowImplWin32@priv@sf@@EAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__PeekMessageA@20 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::ProcessEvents(void)" (?ProcessEvents@WindowImplWin32@priv@sf@@EAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SwapBuffers@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::Display(void)" (?Display@WindowImplWin32@priv@sf@@EAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SetCursor@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::ShowMouseCursor(bool)" (?ShowMouseCursor@WindowImplWin32@priv@sf@@EAEX_N@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__LoadCursorA@8 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::ShowMouseCursor(bool)" (?ShowMouseCursor@WindowImplWin32@priv@sf@@EAEX_N@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SetCursorPos@8 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetCursorPosition(unsigned int,unsigned int)" (?SetCursorPosition@WindowImplWin32@priv@sf@@EAEXII@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__ClientToScreen@8 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetCursorPosition(unsigned int,unsigned int)" (?SetCursorPosition@WindowImplWin32@priv@sf@@EAEXII@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SetWindowPos@28 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetPosition(int,int)" (?SetPosition@WindowImplWin32@priv@sf@@EAEXHH@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__AdjustWindowRect@12 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetSize(unsigned int,unsigned int)" (?SetSize@WindowImplWin32@priv@sf@@EAEXII@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__GetWindowLongA@8 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetSize(unsigned int,unsigned int)" (?SetSize@WindowImplWin32@priv@sf@@EAEXII@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__ShowWindow@8 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::Show(bool)" (?Show@WindowImplWin32@priv@sf@@EAEX_N@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__ReleaseDC@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::Cleanup(void)" (?Cleanup@WindowImplWin32@priv@sf@@AAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__ChangeDisplaySettingsA@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::Cleanup(void)" (?Cleanup@WindowImplWin32@priv@sf@@AAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__GetAsyncKeyState@4 referenced in function "private: static enum sf::Key::Code __cdecl sf::priv::WindowImplWin32::GetShiftState(bool)" (?GetShiftState@WindowImplWin32@priv@sf@@CA?AW4Code@Key@3@_N@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SetWindowLongA@12 referenced in function "public: virtual __thiscall sf::priv::WindowImplWin32::~WindowImplWin32(void)" (??1WindowImplWin32@priv@sf@@UAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__UnregisterClassA@8 referenced in function "public: virtual __thiscall sf::priv::WindowImplWin32::~WindowImplWin32(void)" (??1WindowImplWin32@priv@sf@@UAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__UnregisterClassW@8 referenced in function "public: virtual __thiscall sf::priv::WindowImplWin32::~WindowImplWin32(void)" (??1WindowImplWin32@priv@sf@@UAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__DestroyWindow@4 referenced in function "public: virtual __thiscall sf::priv::WindowImplWin32::~WindowImplWin32(void)" (??1WindowImplWin32@priv@sf@@UAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__DestroyIcon@4 referenced in function "public: virtual __thiscall sf::priv::WindowImplWin32::~WindowImplWin32(void)" (??1WindowImplWin32@priv@sf@@UAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__TrackMouseEvent@4 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::ProcessEvent(unsigned int,unsigned int,long)" (?ProcessEvent@WindowImplWin32@priv@sf@@AAEXIIJ@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__GetClientRect@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::ProcessEvent(unsigned int,unsigned int,long)" (?ProcessEvent@WindowImplWin32@priv@sf@@AAEXIIJ@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__DefWindowProcA@16 referenced in function "private: static long __stdcall sf::priv::WindowImplWin32::GlobalOnEvent(struct HWND__ *,unsigned int,unsigned int,long)" (?GlobalOnEvent@WindowImplWin32@priv@sf@@CGJPAUHWND__@@IIJ@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__DefWindowProcW@16 referenced in function "private: static long __stdcall sf::priv::WindowImplWin32::GlobalOnEvent(struct HWND__ *,unsigned int,unsigned int,long)" (?GlobalOnEvent@WindowImplWin32@priv@sf@@CGJPAUHWND__@@IIJ@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__CallWindowProcA@20 referenced in function "private: static long __stdcall sf::priv::WindowImplWin32::GlobalOnEvent(struct HWND__ *,unsigned int,unsigned int,long)" (?GlobalOnEvent@WindowImplWin32@priv@sf@@CGJPAUHWND__@@IIJ@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__RegisterClassA@4 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::RegisterWindowClass(void)" (?RegisterWindowClass@WindowImplWin32@priv@sf@@AAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__RegisterClassW@4 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::RegisterWindowClass(void)" (?RegisterWindowClass@WindowImplWin32@priv@sf@@AAEXXZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SetPixelFormat@12 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__ChoosePixelFormat@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__DescribePixelFormat@16 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__GetDC@4 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__CreateWindowExA@48 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(void)" (??0WindowImplWin32@priv@sf@@QAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__CreateWindowExW@48 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(void)" (??0WindowImplWin32@priv@sf@@QAE@XZ)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__GetDeviceCaps@8 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(class sf::VideoMode,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned long,struct sf::WindowSettings &)" (??0WindowImplWin32@priv@sf@@QAE@VVideoMode@2@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@KAAUWindowSettings@2@@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__SendMessageA@16 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetIcon(unsigned int,unsigned int,unsigned char const *)" (?SetIcon@WindowImplWin32@priv@sf@@EAEXIIPBE@Z)
1>WindowImplWin32.obj : error LNK2019: unresolved external symbol __imp__CreateIcon@28 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::SetIcon(unsigned int,unsigned int,unsigned char const *)" (?SetIcon@WindowImplWin32@priv@sf@@EAEXIIPBE@Z)
1>C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\build\vc2005\..\..\lib\vc2005\sfml-window.dll : fatal error LNK1120: 37 unresolved externals
1>Build log was saved at "file://C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\Temp\sfml-window\Release DLL\BuildLog.htm"
1>sfml-window - 38 error(s), 0 warning(s)
2>------ Build started: Project: sfml-graphics, Configuration: Release DLL Win32 ------
2>Linking...
2>   Creating library C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\build\vc2005\..\..\lib\vc2005\sfml-graphics.lib and object C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\build\vc2005\..\..\lib\vc2005\sfml-graphics.exp
2>LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library
2>Embedding manifest...
2>Build log was saved at "file://C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\Temp\sfml-graphics\Release DLL\BuildLog.htm"
2>sfml-graphics - 0 error(s), 1 warning(s)
3>------ Build started: Project: pong, Configuration: Release Win32 ------
3>Linking...
3>Pong.obj : error LNK2019: unresolved external symbol "private: static unsigned int * sf::Font::ourDefaultCharset" (?ourDefaultCharset@Font@sf@@0PAIA) referenced in function _main
3>c:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\samples\build\vc2005\..\..\bin\pong.exe : fatal error LNK1120: 1 unresolved externals
3>Build log was saved at "file://C:\Users\Henry\Documents\Visual Studio 2005\Projects\SFML-1.5\Temp\pong\Release\BuildLog.htm"
3>pong - 2 error(s), 0 warning(s)
========== Build: 1 succeeded, 2 failed, 3 up-to-date, 0 skipped ==========


I tried it with the other Solution Configurations first until I got to Release DLL and Debug DLL which seem to want to compile the others.

7
General / Static Library Link Errors
« on: August 30, 2009, 06:03:53 am »
I change it to yes and there are over 680 errors, which I'm not going to post.

But when it's no I still get the sfml-window-s.lib errors.

I can't compile samples either.

8
General / Less Errors
« on: August 29, 2009, 10:29:45 pm »
I don't know what I did but now there are less errors.

Code: [Select]
1>------ Build started: Project: HIT, Configuration: Release Win32 ------
1>Compiling manifest to resources...
1>Linking...
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SwapBuffers@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::Display(void)" (?Display@WindowImplWin32@priv@sf@@EAEXXZ)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SetPixelFormat@12 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__ChoosePixelFormat@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__DescribePixelFormat@16 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__GetDeviceCaps@8 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(class sf::VideoMode,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned long,struct sf::WindowSettings &)" (??0WindowImplWin32@priv@sf@@QAE@VVideoMode@2@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@KAAUWindowSettings@2@@Z)
1>C:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\Release\HIT.exe : fatal error LNK1120: 5 unresolved externals
1>Build log was saved at "file://c:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\HIT\Release\BuildLog.htm"
1>HIT - 6 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========


What I did find out is that sfml-window-s.lib is the problem.

I also switched over to the SVN.

9
SFML projects / Word Foo - an anagram game
« on: August 23, 2009, 08:37:25 pm »
How does the small little dictionary work?

I saw a bunch of definitions in there.

10
General / Static Library Link Errors
« on: August 21, 2009, 11:28:57 am »
Code: [Select]
1>------ Build started: Project: HIT, Configuration: Release Win32 ------
1>Compiling...
1>main.cpp
1>.\main.cpp(366) : warning C4996: '_ftime64' was declared deprecated
1>        C:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\sys/timeb.h(152) : see declaration of '_ftime64'
1>        Message: 'This function or variable may be unsafe. Consider using _ftime64_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>.\main.cpp(367) : warning C4996: 'ctime' was declared deprecated
1>        C:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\time.inl(88) : see declaration of 'ctime'
1>        Message: 'This function or variable may be unsafe. Consider using ctime_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>collision.cpp
1>Generating Code...
1>Linking...
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported in function "protected: static void __cdecl std::vector<class sf::VideoMode,class std::allocator<class sf::VideoMode> >::_Xlen(void)" (?_Xlen@?$vector@VVideoMode@sf@@V?$allocator@VVideoMode@sf@@@std@@@std@@KAXXZ)
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>main.obj : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported in function "public: __thiscall std::bad_alloc::bad_alloc(char const *)" (??0bad_alloc@std@@QAE@PBD@Z)
1>sfml-window-s.lib(Window.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>main.obj : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual __thiscall std::bad_alloc::~bad_alloc(void)" (??1bad_alloc@std@@UAE@XZ)
1>sfml-window-s.lib(Window.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function __ehhandler$??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "class sf::VideoMode * __cdecl std::_Allocate<class sf::VideoMode>(unsigned int,class sf::VideoMode *)" (??$_Allocate@VVideoMode@sf@@@std@@YAPAVVideoMode@sf@@IPAV12@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::length_error::length_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0length_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>main.obj : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(Window.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>main.obj : warning LNK4217: locally defined symbol __invalid_parameter_noinfo imported in function "public: bool __thiscall std::_Tree<class std::_Tmap_traits<int,class sf::Image,struct std::less<int>,class std::allocator<struct std::pair<int const ,class sf::Image> >,0> >::const_iterator::operator==(class std::_Tree<class std::_Tmap_traits<int,class sf::Image,struct std::less<int>,class std::allocator<struct std::pair<int const ,class sf::Image> >,0> >::const_iterator const &)const " (??8const_iterator@?$_Tree@V?$_Tmap_traits@HVImage@sf@@U?$less@H@std@@V?$allocator@U?$pair@$$CBHVImage@sf@@@std@@@4@$0A@@std@@@std@@QBE_NABV012@@Z)
1>sfml-window-s.lib(Window.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4217: locally defined symbol __invalid_parameter_noinfo imported in function "private: static void __cdecl sf::VideoMode::InitializeModes(void)" (?InitializeModes@VideoMode@sf@@CAXXZ)
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported in function "private: bool __thiscall sf::Image::CreateTexture(void)" (?CreateTexture@Image@sf@@AAE_NXZ)
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>main.obj : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported in function "public: __thiscall std::bad_alloc::bad_alloc(class std::bad_alloc const &)" (??0bad_alloc@std@@QAE@ABV01@@Z)
1>sfml-window-s.lib(Window.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _longjmp imported in function "void __cdecl `anonymous namespace'::PngErrorHandler(struct png_struct_def *,char const *)" (?PngErrorHandler@?A0x721544db@@YAXPAUpng_struct_def@@PBD@Z)
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol _longjmp imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _fclose imported in function "private: bool __thiscall sf::priv::ImageLoader::WriteJpg(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class sf::Color,class std::allocator<class sf::Color> > const &,unsigned int,unsigned int)" (?WriteJpg@ImageLoader@priv@sf@@AAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$vector@VColor@sf@@V?$allocator@VColor@sf@@@std@@@5@II@Z)
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _fclose imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _fclose imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _fopen imported in function "private: bool __thiscall sf::priv::ImageLoader::WriteJpg(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class sf::Color,class std::allocator<class sf::Color> > const &,unsigned int,unsigned int)" (?WriteJpg@ImageLoader@priv@sf@@AAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$vector@VColor@sf@@V?$allocator@VColor@sf@@@std@@@5@II@Z)
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _fopen imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _fopen imported
1>sfml-graphics-s.lib(jmemnobs.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(zutil.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(SOIL.obj) : warning LNK4217: locally defined symbol _free imported in function _SOIL_free_image_data
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(pngmem.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(jdatadst.obj) : warning LNK4217: locally defined symbol _fflush imported in function _term_destination
1>sfml-graphics-s.lib(pngwio.obj) : warning LNK4217: locally defined symbol _fflush imported in function _png_set_write_fn
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol _exit imported in function _error_exit
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol ___iob_func imported in function _output_message
1>sfml-graphics-s.lib(pngwutil.obj) : warning LNK4049: locally defined symbol ___iob_func imported
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol ___iob_func imported
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol _sprintf imported in function _format_message
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(png.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(pngwutil.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4217: locally defined symbol _abort imported in function _png_create_write_struct_2
1>sfml-graphics-s.lib(pngset.obj) : warning LNK4217: locally defined symbol _strncpy imported in function _png_set_unknown_chunks
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol _strncpy imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _fseek imported in function _skip
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _fread imported in function _getn
1>sfml-graphics-s.lib(zutil.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _malloc imported in function _convert_format
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(pngmem.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(jmemnobs.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _ftell imported in function _stbi_jpeg_test_file
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _realloc imported in function _expand
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _ldexp imported in function _hdr_convert
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _strtol imported in function _hdr_load
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _strncmp imported in function _hdr_load
1>sfml-graphics-s.lib(jmemmgr.obj) : warning LNK4217: locally defined symbol _getenv imported in function _jinit_memory_mgr
1>sfml-system-s.lib(Unicode.obj) : warning LNK4217: locally defined symbol ??0bad_cast@std@@QAE@PBD@Z (public: __thiscall std::bad_cast::bad_cast(char const *)) imported in function "class std::ctype<wchar_t> const & __cdecl std::use_facet<class std::ctype<wchar_t> >(class std::locale const &)" (??$use_facet@V?$ctype@_W@std@@@std@@YAABV?$ctype@_W@0@ABVlocale@0@@Z)
1>main.obj : error LNK2019: unresolved external symbol __imp___ctime64 referenced in function _ctime
1>main.obj : error LNK2019: unresolved external symbol __imp___ftime64 referenced in function "int __cdecl LuaHook_CurTime(struct lua_State *)" (?LuaHook_CurTime@@YAHPAUlua_State@@@Z)
1>sfml-window-s.lib(Window.obj) : error LNK2019: unresolved external symbol __imp__memmove_s referenced in function "class sf::Event * * __cdecl std::_Uninit_copy<class sf::Event * *,class sf::Event * *,class std::allocator<class sf::Event *> >(class sf::Event * *,class sf::Event * *,class sf::Event * *,class std::allocator<class sf::Event *> &,struct std::_Scalar_ptr_iterator_tag,struct std::_Range_checked_iterator_tag)" (??$_Uninit_copy@PAPAVEvent@sf@@PAPAV12@V?$allocator@PAVEvent@sf@@@std@@@std@@YAPAPAVEvent@sf@@PAPAV12@00AAV?$allocator@PAVEvent@sf@@@0@U_Scalar_ptr_iterator_tag@0@U_Range_checked_iterator_tag@0@@Z)
1>sfml-graphics-s.lib(String.obj) : error LNK2001: unresolved external symbol __imp__memmove_s
1>sfml-graphics-s.lib(FontLoader.obj) : error LNK2001: unresolved external symbol __imp__memmove_s
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SwapBuffers@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::Display(void)" (?Display@WindowImplWin32@priv@sf@@EAEXXZ)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SetPixelFormat@12 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__ChoosePixelFormat@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__DescribePixelFormat@16 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__GetDeviceCaps@8 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(class sf::VideoMode,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned long,struct sf::WindowSettings &)" (??0WindowImplWin32@priv@sf@@QAE@VVideoMode@2@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@KAAUWindowSettings@2@@Z)
1>sfml-graphics-s.lib(jdatadst.obj) : error LNK2019: unresolved external symbol __imp__fwrite referenced in function _empty_output_buffer
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(image_DXT.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(pngwio.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(jdatadst.obj) : error LNK2019: unresolved external symbol __imp__ferror referenced in function _term_destination
1>sfml-graphics-s.lib(jerror.obj) : error LNK2019: unresolved external symbol __imp__fprintf referenced in function _output_message
1>sfml-graphics-s.lib(pngwutil.obj) : error LNK2001: unresolved external symbol __imp__fprintf
1>sfml-graphics-s.lib(pngerror.obj) : error LNK2001: unresolved external symbol __imp__fprintf
1>sfml-graphics-s.lib(pngwrite.obj) : error LNK2019: unresolved external symbol __imp___gmtime64 referenced in function _gmtime
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2019: unresolved external symbol __imp__fgetc referenced in function _get8
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2019: unresolved external symbol __imp__feof referenced in function _at_eof
1>sfml-graphics-s.lib(jmemmgr.obj) : error LNK2019: unresolved external symbol __imp__sscanf referenced in function _jinit_memory_mgr
1>C:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\Release\HIT.exe : fatal error LNK1120: 15 unresolved externals
1>Build log was saved at "file://c:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\HIT\Release\BuildLog.htm"
1>HIT - 23 error(s), 112 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


Still, a whole mess of errors.

11
It's pretty much a generic top down shooter :D

Would be cooler if you had a story and better non-stock graphics.

I don't know how I got the time, but I made this thing for you:


To replace your... light.. house...  :?

Edit: Also, sticking TM and (R) everywhere isn't legal.

12
General / Static Library Link Errors
« on: August 21, 2009, 09:58:10 am »
Multi-threaded (/MT)

13
General / Static Library Link Errors
« on: August 21, 2009, 05:05:26 am »
Code: [Select]
1>------ Build started: Project: HIT, Configuration: Release Win32 ------
1>Compiling...
1>main.cpp
1>.\main.cpp(366) : warning C4996: '_ftime64' was declared deprecated
1>        C:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\sys/timeb.h(152) : see declaration of '_ftime64'
1>        Message: 'This function or variable may be unsafe. Consider using _ftime64_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>.\main.cpp(367) : warning C4996: 'ctime' was declared deprecated
1>        C:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\time.inl(88) : see declaration of 'ctime'
1>        Message: 'This function or variable may be unsafe. Consider using ctime_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>collision.cpp
1>Generating Code...
1>Linking...
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z) already defined in main.obj
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ) already defined in main.obj
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z) already defined in main.obj
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) already defined in libcpmt.lib(string.obj)
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) already defined in libcpmt.lib(string.obj)
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported in function "public: __thiscall std::bad_alloc::bad_alloc(char const *)" (??0bad_alloc@std@@QAE@PBD@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual __thiscall std::bad_alloc::~bad_alloc(void)" (??1bad_alloc@std@@UAE@XZ)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(Font.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function __ehhandler$??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported in function __ehhandler$??1RenderWindow@sf@@UAE@XZ
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported in function "public: __thiscall std::logic_error::logic_error(class std::logic_error const &)" (??0logic_error@std@@QAE@ABV01@@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol __invalid_parameter_noinfo imported in function "public: bool __thiscall sf::Window::GetEvent(class sf::Event &)" (?GetEvent@Window@sf@@QAE_NAAVEvent@2@@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol _memmove_s imported in function "class sf::Event * * __cdecl std::_Uninit_copy<class sf::Event * *,class sf::Event * *,class std::allocator<class sf::Event *> >(class sf::Event * *,class sf::Event * *,class sf::Event * *,class std::allocator<class sf::Event *> &,struct std::_Scalar_ptr_iterator_tag,struct std::_Range_checked_iterator_tag)" (??$_Uninit_copy@PAPAVEvent@sf@@PAPAV12@V?$allocator@PAVEvent@sf@@@std@@@std@@YAPAPAVEvent@sf@@PAPAV12@00AAV?$allocator@PAVEvent@sf@@@0@U_Scalar_ptr_iterator_tag@0@U_Range_checked_iterator_tag@0@@Z)
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol _memmove_s imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol _memmove_s imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _longjmp imported in function "void __cdecl `anonymous namespace'::PngErrorHandler(struct png_struct_def *,char const *)" (?PngErrorHandler@?A0x721544db@@YAXPAUpng_struct_def@@PBD@Z)
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol _longjmp imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _fclose imported in function "private: bool __thiscall sf::priv::ImageLoader::WriteJpg(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class sf::Color,class std::allocator<class sf::Color> > const &,unsigned int,unsigned int)" (?WriteJpg@ImageLoader@priv@sf@@AAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$vector@VColor@sf@@V?$allocator@VColor@sf@@@std@@@5@II@Z)
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _fclose imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _fclose imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _fopen imported in function "private: bool __thiscall sf::priv::ImageLoader::WriteJpg(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class sf::Color,class std::allocator<class sf::Color> > const &,unsigned int,unsigned int)" (?WriteJpg@ImageLoader@priv@sf@@AAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$vector@VColor@sf@@V?$allocator@VColor@sf@@@std@@@5@II@Z)
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _fopen imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _fopen imported
1>sfml-graphics-s.lib(jmemnobs.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(zutil.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(SOIL.obj) : warning LNK4217: locally defined symbol _free imported in function _SOIL_free_image_data
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(pngmem.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(jdatadst.obj) : warning LNK4217: locally defined symbol _fflush imported in function _term_destination
1>sfml-graphics-s.lib(pngwio.obj) : warning LNK4217: locally defined symbol _fflush imported in function _png_set_write_fn
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol _exit imported in function _error_exit
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol ___iob_func imported in function _output_message
1>sfml-graphics-s.lib(pngwutil.obj) : warning LNK4049: locally defined symbol ___iob_func imported
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol ___iob_func imported
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol _sprintf imported in function _format_message
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(png.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(pngwutil.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4217: locally defined symbol __gmtime64 imported in function _gmtime
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4217: locally defined symbol _abort imported in function _png_create_write_struct_2
1>sfml-graphics-s.lib(pngset.obj) : warning LNK4217: locally defined symbol _strncpy imported in function _png_set_unknown_chunks
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol _strncpy imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _fseek imported in function _skip
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _fread imported in function _getn
1>sfml-graphics-s.lib(zutil.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _malloc imported in function _convert_format
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(pngmem.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(jmemnobs.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _ftell imported in function _stbi_jpeg_test_file
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _realloc imported in function _expand
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _ldexp imported in function _hdr_convert
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _strtol imported in function _hdr_load
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _strncmp imported in function _hdr_load
1>sfml-graphics-s.lib(jmemmgr.obj) : warning LNK4217: locally defined symbol _getenv imported in function _jinit_memory_mgr
1>sfml-system-s.lib(Unicode.obj) : warning LNK4217: locally defined symbol ??0bad_cast@std@@QAE@PBD@Z (public: __thiscall std::bad_cast::bad_cast(char const *)) imported in function "class std::ctype<wchar_t> const & __cdecl std::use_facet<class std::ctype<wchar_t> >(class std::locale const &)" (??$use_facet@V?$ctype@_W@std@@@std@@YAABV?$ctype@_W@0@ABVlocale@0@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SwapBuffers@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::Display(void)" (?Display@WindowImplWin32@priv@sf@@EAEXXZ)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SetPixelFormat@12 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__ChoosePixelFormat@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__DescribePixelFormat@16 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__GetDeviceCaps@8 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(class sf::VideoMode,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned long,struct sf::WindowSettings &)" (??0WindowImplWin32@priv@sf@@QAE@VVideoMode@2@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@KAAUWindowSettings@2@@Z)
1>sfml-graphics-s.lib(jdatadst.obj) : error LNK2019: unresolved external symbol __imp__fwrite referenced in function _empty_output_buffer
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(image_DXT.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(pngwio.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(jdatadst.obj) : error LNK2019: unresolved external symbol __imp__ferror referenced in function _term_destination
1>sfml-graphics-s.lib(jerror.obj) : error LNK2019: unresolved external symbol __imp__fprintf referenced in function _output_message
1>sfml-graphics-s.lib(pngwutil.obj) : error LNK2001: unresolved external symbol __imp__fprintf
1>sfml-graphics-s.lib(pngerror.obj) : error LNK2001: unresolved external symbol __imp__fprintf
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2019: unresolved external symbol __imp__fgetc referenced in function _get8
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2019: unresolved external symbol __imp__feof referenced in function _at_eof
1>sfml-graphics-s.lib(jmemmgr.obj) : error LNK2019: unresolved external symbol __imp__sscanf referenced in function _jinit_memory_mgr
1>C:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\Release\HIT.exe : fatal error LNK1120: 11 unresolved externals
1>Build log was saved at "file://c:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\HIT\Release\BuildLog.htm"
1>HIT - 22 error(s), 111 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


Rebuilt it, and I guess I have the same amount of errors.

14
General / Static Library Link Errors
« on: August 20, 2009, 02:52:39 am »
Yes, but with that on I get less errors.

15
General / Static Library Link Errors
« on: August 20, 2009, 12:45:45 am »
I did what you said,now I get another error.

Code: [Select]
1>------ Build started: Project: HIT, Configuration: Release Win32 ------
1>Linking...
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z) already defined in main.obj
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ) already defined in main.obj
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z) already defined in main.obj
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) already defined in libcpmt.lib(string.obj)
1>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: static void __cdecl std::_String_base::_Xlen(void)" (?_Xlen@_String_base@std@@SAXXZ) already defined in libcpmt.lib(string.obj)
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported in function "public: __thiscall std::bad_alloc::bad_alloc(char const *)" (??0bad_alloc@std@@QAE@PBD@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABQBD@Z (public: __thiscall std::exception::exception(char const * const &)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual void * __thiscall std::bad_alloc::`scalar deleting destructor'(unsigned int)" (??_Gbad_alloc@std@@UAEPAXI@Z)
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: virtual __thiscall std::bad_alloc::~bad_alloc(void)" (??1bad_alloc@std@@UAE@XZ)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4217: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??1exception@std@@UAE@XZ (public: virtual __thiscall std::exception::~exception(void)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(Font.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function __ehhandler$??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported in function "public: __thiscall std::logic_error::logic_error(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@XZ (public: __thiscall std::exception::exception(void)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported in function __ehhandler$??1RenderWindow@sf@@UAE@XZ
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported in function "public: __thiscall std::logic_error::logic_error(class std::logic_error const &)" (??0logic_error@std@@QAE@ABV01@@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol ??0exception@std@@QAE@ABV01@@Z (public: __thiscall std::exception::exception(class std::exception const &)) imported
1>sfml-system-s.lib(Unicode.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Font.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(WindowImplWin32.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Sprite.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(RenderWindow.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-graphics-s.lib(Image.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol __invalid_parameter_noinfo imported in function "public: bool __thiscall sf::Window::GetEvent(class sf::Event &)" (?GetEvent@Window@sf@@QAE_NAAVEvent@2@@Z)
1>sfml-window-s.lib(VideoMode.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(WindowImpl.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(VideoModeSupport.obj) : warning LNK4049: locally defined symbol __invalid_parameter_noinfo imported
1>sfml-window-s.lib(Window.obj) : warning LNK4217: locally defined symbol _memmove_s imported in function "class sf::Event * * __cdecl std::_Uninit_copy<class sf::Event * *,class sf::Event * *,class std::allocator<class sf::Event *> >(class sf::Event * *,class sf::Event * *,class sf::Event * *,class std::allocator<class sf::Event *> &,struct std::_Scalar_ptr_iterator_tag,struct std::_Range_checked_iterator_tag)" (??$_Uninit_copy@PAPAVEvent@sf@@PAPAV12@V?$allocator@PAVEvent@sf@@@std@@@std@@YAPAPAVEvent@sf@@PAPAV12@00AAV?$allocator@PAVEvent@sf@@@0@U_Scalar_ptr_iterator_tag@0@U_Range_checked_iterator_tag@0@@Z)
1>sfml-graphics-s.lib(String.obj) : warning LNK4049: locally defined symbol _memmove_s imported
1>sfml-graphics-s.lib(FontLoader.obj) : warning LNK4049: locally defined symbol _memmove_s imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _longjmp imported in function "void __cdecl `anonymous namespace'::PngErrorHandler(struct png_struct_def *,char const *)" (?PngErrorHandler@?A0x721544db@@YAXPAUpng_struct_def@@PBD@Z)
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol _longjmp imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _fclose imported in function "private: bool __thiscall sf::priv::ImageLoader::WriteJpg(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class sf::Color,class std::allocator<class sf::Color> > const &,unsigned int,unsigned int)" (?WriteJpg@ImageLoader@priv@sf@@AAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$vector@VColor@sf@@V?$allocator@VColor@sf@@@std@@@5@II@Z)
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _fclose imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _fclose imported
1>sfml-graphics-s.lib(ImageLoader.obj) : warning LNK4217: locally defined symbol _fopen imported in function "private: bool __thiscall sf::priv::ImageLoader::WriteJpg(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class sf::Color,class std::allocator<class sf::Color> > const &,unsigned int,unsigned int)" (?WriteJpg@ImageLoader@priv@sf@@AAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$vector@VColor@sf@@V?$allocator@VColor@sf@@@std@@@5@II@Z)
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _fopen imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _fopen imported
1>sfml-graphics-s.lib(jmemnobs.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(zutil.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(SOIL.obj) : warning LNK4217: locally defined symbol _free imported in function _SOIL_free_image_data
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(pngmem.obj) : warning LNK4049: locally defined symbol _free imported
1>sfml-graphics-s.lib(jdatadst.obj) : warning LNK4217: locally defined symbol _fflush imported in function _term_destination
1>sfml-graphics-s.lib(pngwio.obj) : warning LNK4217: locally defined symbol _fflush imported in function _png_set_write_fn
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol _exit imported in function _error_exit
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol ___iob_func imported in function _output_message
1>sfml-graphics-s.lib(pngwutil.obj) : warning LNK4049: locally defined symbol ___iob_func imported
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol ___iob_func imported
1>sfml-graphics-s.lib(jerror.obj) : warning LNK4217: locally defined symbol _sprintf imported in function _format_message
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(png.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(pngwutil.obj) : warning LNK4049: locally defined symbol _sprintf imported
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4217: locally defined symbol __gmtime64 imported in function _gmtime
1>sfml-graphics-s.lib(pngwrite.obj) : warning LNK4217: locally defined symbol _abort imported in function _png_create_write_struct_2
1>sfml-graphics-s.lib(pngset.obj) : warning LNK4217: locally defined symbol _strncpy imported in function _png_set_unknown_chunks
1>sfml-graphics-s.lib(pngerror.obj) : warning LNK4049: locally defined symbol _strncpy imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _fseek imported in function _skip
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _fread imported in function _getn
1>sfml-graphics-s.lib(zutil.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _malloc imported in function _convert_format
1>sfml-graphics-s.lib(image_DXT.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(pngmem.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(jmemnobs.obj) : warning LNK4049: locally defined symbol _malloc imported
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _ftell imported in function _stbi_jpeg_test_file
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _realloc imported in function _expand
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _ldexp imported in function _hdr_convert
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _strtol imported in function _hdr_load
1>sfml-graphics-s.lib(stb_image_aug.obj) : warning LNK4217: locally defined symbol _strncmp imported in function _hdr_load
1>sfml-graphics-s.lib(jmemmgr.obj) : warning LNK4217: locally defined symbol _getenv imported in function _jinit_memory_mgr
1>sfml-system-s.lib(Unicode.obj) : warning LNK4217: locally defined symbol ??0bad_cast@std@@QAE@PBD@Z (public: __thiscall std::bad_cast::bad_cast(char const *)) imported in function "class std::ctype<wchar_t> const & __cdecl std::use_facet<class std::ctype<wchar_t> >(class std::locale const &)" (??$use_facet@V?$ctype@_W@std@@@std@@YAABV?$ctype@_W@0@ABVlocale@0@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SwapBuffers@4 referenced in function "private: virtual void __thiscall sf::priv::WindowImplWin32::Display(void)" (?Display@WindowImplWin32@priv@sf@@EAEXXZ)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__SetPixelFormat@12 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__ChoosePixelFormat@8 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__DescribePixelFormat@16 referenced in function "private: void __thiscall sf::priv::WindowImplWin32::CreateContext(class sf::VideoMode const &,struct sf::WindowSettings &)" (?CreateContext@WindowImplWin32@priv@sf@@AAEXABVVideoMode@3@AAUWindowSettings@3@@Z)
1>sfml-window-s.lib(WindowImplWin32.obj) : error LNK2019: unresolved external symbol __imp__GetDeviceCaps@8 referenced in function "public: __thiscall sf::priv::WindowImplWin32::WindowImplWin32(class sf::VideoMode,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned long,struct sf::WindowSettings &)" (??0WindowImplWin32@priv@sf@@QAE@VVideoMode@2@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@KAAUWindowSettings@2@@Z)
1>sfml-graphics-s.lib(jdatadst.obj) : error LNK2019: unresolved external symbol __imp__fwrite referenced in function _empty_output_buffer
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(image_DXT.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(pngwio.obj) : error LNK2001: unresolved external symbol __imp__fwrite
1>sfml-graphics-s.lib(jdatadst.obj) : error LNK2019: unresolved external symbol __imp__ferror referenced in function _term_destination
1>sfml-graphics-s.lib(jerror.obj) : error LNK2019: unresolved external symbol __imp__fprintf referenced in function _output_message
1>sfml-graphics-s.lib(pngwutil.obj) : error LNK2001: unresolved external symbol __imp__fprintf
1>sfml-graphics-s.lib(pngerror.obj) : error LNK2001: unresolved external symbol __imp__fprintf
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2019: unresolved external symbol __imp__fgetc referenced in function _get8
1>sfml-graphics-s.lib(stb_image_aug.obj) : error LNK2019: unresolved external symbol __imp__feof referenced in function _at_eof
1>sfml-graphics-s.lib(jmemmgr.obj) : error LNK2019: unresolved external symbol __imp__sscanf referenced in function _jinit_memory_mgr
1>C:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\Release\HIT.exe : fatal error LNK1120: 11 unresolved externals
1>Build log was saved at "file://c:\Users\Henry\Documents\Visual Studio 2005\Projects\HIT\HIT\Release\BuildLog.htm"
1>HIT - 22 error(s), 109 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


I also have /NODEFAULTLIB:MSVCRT on.

Pages: [1] 2