Jump to content

antrax16

Inactive Member
  • Posts

    66
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by antrax16

  1. Hy . 

    Today i implemented mini game ok event , but i  have a problem . 

    When i pres start buton for ok event window is not open and i have this eroor in syserr .

    â

    1111 22:05:50198 :: Traceback (most recent call last):
    
    1111 22:05:50199 ::   File "ui.py", line 1048, in CallEvent
    
    1111 22:05:50199 ::   File "ui.py", line 88, in __call__
    
    1111 22:05:50200 ::   File "ui.py", line 70, in __call__
    
    1111 22:05:50200 ::   File "uiCards.py", line 87, in __OnStartQuestion
    
    1111 22:05:50201 :: TypeError
    1111 22:05:50201 :: : 
    1111 22:05:50201 :: not enough arguments for format string
    1111 22:05:50201 :: 

    The eroor appear  after press event start buton .

     

  2. Hi .

     I have a problem when i start the server ..

    When i try to login i get

    Oct 23 19:55:06 :: recved : HEADER_GD_BLOCK_COUNTRY_IP
    Oct 23 19:55:06 :: HEADER_GD_BLOCK_COUNTRY_IP received
    Oct 23 19:55:06 :: SendBlockedCountryIp start
    Oct 23 19:55:06 :: [DONE] CBlockCountry::SendBlockedCountryIp() : count = 1
    Oct 23 19:55:06 :: SendBlockedCountryIp end
    Oct 23 19:55:51 :: recved : HEADER_GD_BLOCK_COUNTRY_IP
    Oct 23 19:55:51 :: HEADER_GD_BLOCK_COUNTRY_IP received
    Oct 23 19:55:51 :: SendBlockedCountryIp start
    Oct 23 19:55:51 :: [DONE] CBlockCountry::SendBlockedCountryIp() : count = 1
    Oct 23 19:55:51 :: SendBlockedCountryIp end

    Before mysql stop and i  recive this 

    SYSERR: Oct 23 19:56:16 :: ChildLoop: AsyncSQL: query failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (61) (query: SELECT id,login,vnum,count,socket0,socket1,socket2,mall,why FROM item_award WHERE taken_time IS NULL and id > 0 errno: 2002)
    SYSERR: Oct 23 19:56:17 :: ChildLoop: AsyncSQL: retrying
    SYSERR: Oct 23 19:56:19 :: ChildLoop: AsyncSQL: query failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) (query: SELECT id,login,vnum,count,socket0,socket1,socket2,mall,why FROM item_award WHERE taken_time IS NULL and id > 0 errno: 2002)

    What is problem....

     

  3. Hey 

    I try to add ace system but i have a problem with game compile . 

    Eroot in item_manager.cpp 

    befer add this function

    void ITEM_MANAGER::RemoveItem(LPITEM item, const char * c_pszReason) 
    {
        LPCHARACTER o;
        if ((o = item->GetOwner()))
        {
            char szHint[64];
            snprintf(szHint, sizeof(szHint), "%s %u ", item->GetName(), item->GetCount());
            if (item->GetOwner()->IsAcceOpen())
            {
                Acce_delete_item(item->GetOwner(), 0);
                Acce_delete_item(item->GetOwner(), 1);
            }
            
            LogManager::instance().ItemLog(o, item, c_pszReason ? c_pszReason : "REMOVE", szHint);
            if (item->GetWindow() == MALL || item->GetWindow() == SAFEBOX)
            {
                CSafebox* pSafebox = item->GetWindow() == MALL ? o->GetMall() : o->GetSafebox();
                if (pSafebox)
                {
                    pSafebox->Remove(item->GetCell());
                }
            }
            else
            {
                o->SyncQuickslot(QUICKSLOT_TYPE_ITEM, item->GetCell(), 255);
                item->RemoveFromCharacter();
            }
        }
    
        M2_DESTROY_ITEM(item);
    }
    compiling item_manager.cpp
    item_manager.cpp:500:6: error: redefinition of 'void ITEM_MANAGER::RemoveItem(LPITEM, const char*)'
     void ITEM_MANAGER::RemoveItem(LPITEM item, const char * c_pszReason)
          ^
    item_manager.cpp:447:6: error: 'void ITEM_MANAGER::RemoveItem(LPITEM, const char*)' previously defined here
     void ITEM_MANAGER::RemoveItem(LPITEM item, const char * c_pszReason)
          ^
    Makefile:189: recipe for target '.obj/item_manager.o' failed
    gmake: *** [.obj/item_manager.o] Error 1
    root@bsd:/usr/mainline/Srcs/Server/game/src #
    
    

     

  4. Hei . 

    Today i  try to compile binary but i am this eroor 

    1>------ Rebuild All started: Project: EterLocale, Configuration: Release Win32 ------
    2>------ Rebuild All started: Project: CWebBrowser, Configuration: Release Win32 ------
    1>  StdAfx.cpp
    1>  Arabic.cpp
    1>  Japanese.cpp
    1>  StringCodec.cpp
    1>  StringCodec_Vietnamese.cpp
    1>  Generating Code...
    1>  EterLocale_VC90.vcxproj -> F:\Core\sln\Srcs\Client\EterLocale\.\Release\EterLocale.lib
    3>------ Rebuild All started: Project: EffectLib, Configuration: Release Win32 ------
    3>  StdAfx.cpp
    2>  CWebBrowser.c
    2>  CWebBrowser_VC90.vcxproj -> F:\Core\sln\Srcs\Client\CWebBrowser\.\Release\CWebBrowser.lib
    4>------ Rebuild All started: Project: EterPack, Configuration: Release Win32 ------
    3>  EffectData.cpp
    3>  EffectElementBase.cpp
    3>  EffectElementBaseInstance.cpp
    3>  EffectInstance.cpp
    3>  EffectManager.cpp
    4>  EterPack.cpp
    4>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>f:\core\sln\srcs\client\eterpack\Inline.h(14): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>EterPack.cpp(90): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    4>EterPack.cpp(104): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    4>EterPack.cpp(127): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>EterPack.cpp(145): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    4>EterPack.cpp(159): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    4>EterPack.cpp(182): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>EterPack.cpp(255): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>EterPack.cpp(257): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>EterPack.cpp(258): warning C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    3>  EffectMesh.cpp
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(118) : see declaration of 'strcat'
    4>EterPack.cpp(373): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>EterPack.cpp(1116): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>EterPack.cpp(1127): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>EterPack.cpp(1227): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>EterPack.cpp(1240): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>EterPack.cpp(1261): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>EterPack.cpp(1269): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    4>  EterPackCursor.cpp
    3>  EffectMeshInstance.cpp
    4>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    3>  EffectUpdateDecorator.cpp
    3>  EmitterProperty.cpp
    3>  FrameController.cpp
    3>  ParticleInstance.cpp
    4>f:\core\sln\srcs\client\eterpack\Inline.h(14): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>EterPackCursor.cpp(19): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    4>  EterPackManager.cpp
    3>  ParticleProperty.cpp
    3>  ParticleSystemData.cpp
    4>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    3>  ParticleSystemInstance.cpp
    3>  SimpleLightData.cpp
    3>  SimpleLightInstance.cpp
    3>  Type.cpp
    3>  Generating Code...
    4>  EterPackPolicy_CSHybridCrypt.cpp
    4>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>  StdAfx.cpp
    3>  EffectLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\EffectLib\.\Release\EffectLib.lib
    4>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    4>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    4>  Generating Code...
    5>------ Rebuild All started: Project: PRTerrainLib, Configuration: Release Win32 ------
    5>  StdAfx.cpp
    4>  md5.c
    4>  EterPack_VC90.vcxproj -> F:\Core\sln\Srcs\Client\EterPack\.\Release\EterPack.lib
    6>------ Rebuild All started: Project: SpeedTreeLib, Configuration: Release Win32 ------
    5>  Terrain.cpp
    6>  StdAfx.cpp
    5>  TextureSet.cpp
    5>  Generating Code...
    5>  PRTerrainLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\PRTerrainLib\.\Release\PRTerrainLib.lib
    6>  BoundaryShapeManager.cpp
    6>BoundaryShapeManager.cpp(55): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    7>------ Rebuild All started: Project: SphereLib, Configuration: Release Win32 ------
    6>  SpeedGrassRT.cpp
    7>  StdAfx.cpp
    6>  SpeedGrassWrapper.cpp
    7>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    7>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    7>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    7>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    7>  frustum.cpp
    7>  sphere.cpp
    7>  spherepack.cpp
    7>  Generating Code...
    7>  SphereLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\SphereLib\.\Release\SphereLib.lib
    6>  SpeedTreeForest.cpp
    8>------ Rebuild All started: Project: eterBase, Configuration: Release Win32 ------
    8>  Base.cpp
    6>f:\core\sln\srcs\client\speedtreelib\../eterBase/Filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    6>f:\core\sln\srcs\client\speedtreelib\../eterBase/Filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    8>  Poly.cpp
    6>  SpeedTreeForestDirectX8.cpp
    8>  Symbol.cpp
    6>f:\core\sln\srcs\client\speedtreelib\VertexShaders.h(164): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    6>f:\core\sln\srcs\client\speedtreelib\VertexShaders.h(171): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    6>  SpeedTreeWrapper.cpp
    8>  SymTable.cpp
    6>f:\core\sln\srcs\client\speedtreelib\../eterBase/Filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    6>f:\core\sln\srcs\client\speedtreelib\../eterBase/Filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    8>  cipher.cpp
    6>f:\core\sln\srcs\client\speedtreelib\VertexShaders.h(164): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    6>f:\core\sln\srcs\client\speedtreelib\VertexShaders.h(171): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    6>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    6>  Generating Code...
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(192): warning C4100: 'blocking' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(192): warning C4100: 'channel' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(192): warning C4100: 'target' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(194): warning C4100: 'blocking' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(194): warning C4100: 'channel' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(194): warning C4100: 'end' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(194): warning C4100: 'begin' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(194): warning C4100: 'target' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(202): warning C4100: 'parameters' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(203): warning C4100: 'blocking' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(203): warning C4100: 'messageEnd' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(203): warning C4100: 'length' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(203): warning C4100: 'begin' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(76): warning C4100: 'iterationCount' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(76): warning C4100: 'input' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(76): warning C4100: 'output' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(76): warning C4100: 'operation' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(78): warning C4100: 'length' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(78): warning C4100: 'iv' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(78): warning C4100: 'keystreamBuffer' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(80): warning C4100: 'iterationCount' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(171): warning C4100: 'iterationCount' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(171): warning C4100: 'dir' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(171): warning C4100: 'input' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(171): warning C4100: 'output' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(173): warning C4100: 'length' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\strciphr.h(173): warning C4100: 'iv' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(80): warning C4512: 'CryptoPP::CombinedNameValuePairs' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(70) : see declaration of 'CryptoPP::CombinedNameValuePairs'
    8>f:\core\sln\srcs\extern\include\cryptopp\queue.h(94): warning C4512: 'CryptoPP::ByteQueue::Walker' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\queue.h(65) : see declaration of 'CryptoPP::ByteQueue::Walker'
    8>f:\core\sln\srcs\extern\include\cryptopp\queue.h(123): warning C4512: 'CryptoPP::LazyPutter' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\queue.h(113) : see declaration of 'CryptoPP::LazyPutter'
    8>f:\core\sln\srcs\extern\include\cryptopp\queue.h(131): warning C4512: 'CryptoPP::LazyPutterModifiable' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\queue.h(126) : see declaration of 'CryptoPP::LazyPutterModifiable'
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(94): warning C4100: 'parameters' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(174): warning C4100: 'lastSize' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(174): warning C4100: 'blockSize' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(174): warning C4100: 'firstSize' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(176): warning C4100: 'parameters' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(181): warning C4100: 'inString' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(205): warning C4100: 'length' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(205): warning C4100: 'inString' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(251): warning C4100: 'parameters' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(536): warning C4512: 'CryptoPP::OutputProxy' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\filters.h(501) : see declaration of 'CryptoPP::OutputProxy'
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(700): warning C4100: 'blocking' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(700): warning C4100: 'channel' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(700): warning C4100: 'end' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(700): warning C4100: 'begin' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(700): warning C4100: 'target' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(717): warning C4100: 'parameters' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\modarith.h(101): warning C4100: 'ignore_for_now' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(71): warning C4100: 'rng' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(109): warning C4100: 'name' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(189): warning C4100: 'digestLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(189): warning C4100: 'hashIdentifierLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(191): warning C4100: 'digestLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(191): warning C4100: 'hashIdentifierLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(191): warning C4100: 'representativeBitLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(202): warning C4100: 'semisignatureLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(202): warning C4100: 'semisignature' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(202): warning C4100: 'hash' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(208): warning C4100: 'semisignature' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(207): warning C4100: 'presignatureLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(207): warning C4100: 'presignature' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(206): warning C4100: 'recoverableMessageLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(206): warning C4100: 'recoverableMessage' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(205): warning C4100: 'hash' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(226): warning C4100: 'recoveredMessage' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(225): warning C4100: 'representativeBitLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(225): warning C4100: 'representative' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(224): warning C4100: 'messageEmpty' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(224): warning C4100: 'hashIdentifier' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(224): warning C4100: 'hash' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(233): warning C4100: 'recoveredMessage' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(232): warning C4100: 'semisignatureLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(232): warning C4100: 'semisignature' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(231): warning C4100: 'presignatureLength' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(231): warning C4100: 'presignature' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(230): warning C4100: 'hashIdentifier' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(230): warning C4100: 'hash' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(937): warning C4100: 'name' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(156): warning C4512: 'CryptoPP::BERGeneralDecoder' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\asn.h(128) : see declaration of 'CryptoPP::BERGeneralDecoder'
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(154): warning C4100: 'parameters' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(174): warning C4512: 'CryptoPP::DERGeneralEncoder' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\asn.h(159) : see declaration of 'CryptoPP::DERGeneralEncoder'
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(184): warning C4512: 'CryptoPP::BERSequenceDecoder' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\asn.h(177) : see declaration of 'CryptoPP::BERSequenceDecoder'
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(194): warning C4512: 'CryptoPP::DERSequenceEncoder' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\asn.h(187) : see declaration of 'CryptoPP::DERSequenceEncoder'
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(204): warning C4512: 'CryptoPP::BERSetDecoder' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\asn.h(197) : see declaration of 'CryptoPP::BERSetDecoder'
    8>f:\core\sln\srcs\extern\include\cryptopp\asn.h(214): warning C4512: 'CryptoPP::DERSetEncoder' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\asn.h(207) : see declaration of 'CryptoPP::DERSetEncoder'
    8>f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(53): warning C4100: 'reversible' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(55): warning C4100: 'reversible' : unreferenced formal parameter
    8>F:\Core\sln\Srcs\extern\include\cryptopp/dh2.h(54): warning C4512: 'CryptoPP::DH2' : assignment operator could not be generated
    8>          F:\Core\sln\Srcs\extern\include\cryptopp/dh2.h(12) : see declaration of 'CryptoPP::DH2'
    8>F:\Core\sln\Srcs\extern\include\cryptopp/tea.h(100): warning C4100: 'length' : unreferenced formal parameter
    8>cipher.cpp(134): warning C4512: 'DH2KeyAgreement' : assignment operator could not be generated
    8>          cipher.cpp(121) : see declaration of 'DH2KeyAgreement'
    8>cipher.cpp(380): warning C4189: 'count' : local variable is initialized but not referenced
    8>cipher.cpp(446): warning C4193: #pragma warning(pop) : no matching '#pragma warning(push)'
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(88): warning C4100: 'blocking' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(89) : while compiling class template member function 'size_t CryptoPP::InputRejecting<CryptoPP::BufferedTransformation>::Put2(const byte *,size_t,int,bool)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(153) : see reference to class template instantiation 'CryptoPP::InputRejecting<CryptoPP::BufferedTransformation>' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(168) : see reference to class template instantiation 'CryptoPP::AutoSignaling<CryptoPP::InputRejecting<CryptoPP::BufferedTransformation>>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(88): warning C4100: 'messageEnd' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(88): warning C4100: 'length' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(88): warning C4100: 'begin' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(93): warning C4100: 'blocking' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(94) : while compiling class template member function 'size_t CryptoPP::InputRejecting<CryptoPP::BufferedTransformation>::ChannelPut2(const std::string &,const byte *,size_t,int,bool)'
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(93): warning C4100: 'messageEnd' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(93): warning C4100: 'length' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(93): warning C4100: 'begin' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(93): warning C4100: 'channel' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(52): warning C4100: 'blocking' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(52) : while compiling class template member function 'bool CryptoPP::Bufferless<CryptoPP::Sink>::IsolatedFlush(bool,bool)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(199) : see reference to class template instantiation 'CryptoPP::Bufferless<CryptoPP::Sink>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(52): warning C4100: 'hardFlush' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(322): warning C4189: 'p' : local variable is initialized but not referenced
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(321) : while compiling class template member function 'void CryptoPP::AlgorithmParametersTemplate<bool>::MoveInto(void *) const'
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(329) : see reference to class template instantiation 'CryptoPP::AlgorithmParametersTemplate<bool>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(62): warning C4100: 'blocking' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(63) : while compiling class template member function 'bool CryptoPP::Unflushable<CryptoPP::Filter>::IsolatedFlush(bool,bool)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\filters.h(388) : see reference to class template instantiation 'CryptoPP::Unflushable<CryptoPP::Filter>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(62): warning C4100: 'hardFlush' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(117): warning C4100: 'parameters' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(117) : while compiling class template member function 'void CryptoPP::CustomSignalPropagation<CryptoPP::Sink>::IsolatedInitialize(const CryptoPP::NameValuePairs &)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\filters.h(442) : see reference to class template instantiation 'CryptoPP::CustomSignalPropagation<CryptoPP::Sink>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(106): warning C4100: 'blocking' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(106) : while compiling class template member function 'bool CryptoPP::CustomFlushPropagation<T>::IsolatedFlush(bool,bool)'
    8>          with
    8>          [
    8>              T=CryptoPP::Sink
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(112) : see reference to class template instantiation 'CryptoPP::CustomFlushPropagation<T>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::Sink
    8>          ]
    8>f:\core\sln\srcs\extern\include\cryptopp\simple.h(106): warning C4100: 'hardFlush' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(597): warning C4100: 'blocking' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\filters.h(598) : while compiling class template member function 'size_t CryptoPP::StringSinkTemplate<std::string>::Put2(const byte *,size_t,int,bool)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\filters.h(614) : see reference to class template instantiation 'CryptoPP::StringSinkTemplate<std::string>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\filters.h(597): warning C4100: 'messageEnd' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(317): warning C4100: 'signatureLength' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(318) : while compiling class template member function 'size_t CryptoPP::TF_SignatureSchemeBase<CryptoPP::PK_Signer,CryptoPP::TF_Base<CryptoPP::RandomizedTrapdoorFunctionInverse,CryptoPP::PK_SignatureMessageEncodingMethod>>::MaxRecoverableLengthFromSignatureLength(size_t) const'
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(336) : see reference to class template instantiation 'CryptoPP::TF_SignatureSchemeBase<CryptoPP::PK_Signer,CryptoPP::TF_Base<CryptoPP::RandomizedTrapdoorFunctionInverse,CryptoPP::PK_SignatureMessageEncodingMethod>>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(226): warning C4512: 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>,CryptoPP::DL_GroupParameters_IntegerBased>' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(96) : see reference to class template instantiation 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>,CryptoPP::DL_GroupParameters_IntegerBased>' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(96) : while compiling class template member function 'void CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>::AssignFrom(const CryptoPP::NameValuePairs &)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(116) : see reference to class template instantiation 'CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(905): warning C4100: 's' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(906) : while compiling class template member function 'CryptoPP::Integer CryptoPP::DL_ElgamalLikeSignatureAlgorithm<T>::RecoverPresignature(const CryptoPP::DL_GroupParameters<T> &,const CryptoPP::DL_PublicKey<T> &,const CryptoPP::Integer &,const CryptoPP::Integer &) const'
    8>          with
    8>          [
    8>              T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(153) : see reference to class template instantiation 'CryptoPP::DL_ElgamalLikeSignatureAlgorithm<T>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(180) : see reference to class template instantiation 'CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(905): warning C4100: 'r' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(905): warning C4100: 'publicKey' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(905): warning C4100: 'params' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(226): warning C4512: 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PublicKeyImpl<GP>,CryptoPP::DL_PublicKey<T>>' : assignment operator could not be generated
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>  ,            T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(859) : see reference to class template instantiation 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PublicKeyImpl<GP>,CryptoPP::DL_PublicKey<T>>' being compiled
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>  ,            T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(858) : while compiling class template member function 'void CryptoPP::DL_PublicKeyImpl<GP>::AssignFrom(const CryptoPP::NameValuePairs &)'
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(212) : see reference to class template instantiation 'CryptoPP::DL_PublicKeyImpl<GP>' being compiled
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(406) : see reference to class template instantiation 'CryptoPP::DL_PublicKey_GFP<CryptoPP::DL_GroupParameters_DSA>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(226): warning C4512: 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PrivateKeyImpl<GP>,CryptoPP::DL_PrivateKey<CryptoPP::Integer>>' : assignment operator could not be generated
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(776) : see reference to class template instantiation 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PrivateKeyImpl<GP>,CryptoPP::DL_PrivateKey<CryptoPP::Integer>>' being compiled
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(775) : while compiling class template member function 'void CryptoPP::DL_PrivateKeyImpl<GP>::AssignFrom(const CryptoPP::NameValuePairs &)'
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(231) : see reference to class template instantiation 'CryptoPP::DL_PrivateKeyImpl<GP>' being compiled
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(407) : see reference to class template instantiation 'CryptoPP::DL_PrivateKey_GFP<CryptoPP::DL_GroupParameters_DSA>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1392): warning C4100: 'rng' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1393) : while compiling class template member function 'void CryptoPP::DL_SimpleKeyAgreementDomainBase<CryptoPP::Integer>::GeneratePublicKey(CryptoPP::RandomNumberGenerator &,const byte *,byte *) const'
    8>          F:\Core\sln\Srcs\extern\include\cryptopp/dh.h(60) : see reference to function template instantiation 'void CryptoPP::DL_SimpleKeyAgreementDomainBase<CryptoPP::Integer>::GeneratePublicKey(CryptoPP::RandomNumberGenerator &,const byte *,byte *) const' being compiled
    8>          F:\Core\sln\Srcs\extern\include\cryptopp/dh.h(14) : see reference to class template instantiation 'CryptoPP::DL_SimpleKeyAgreementDomainBase<CryptoPP::Integer>' being compiled
    8>          F:\Core\sln\Srcs\extern\include\cryptopp/dh.h(92) : see reference to class template instantiation 'CryptoPP::DH_Domain<CryptoPP::DL_GroupParameters_GFP_DefaultSafePrime,CryptoPP::DL_GroupParameters_GFP_DefaultSafePrime::DefaultCofactorOption>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\secblock.h(96): warning C4127: conditional expression is constant
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(90) : while compiling class template member function 'unsigned char *CryptoPP::AllocatorWithCleanup<byte,false>::allocate(CryptoPP::AllocatorWithCleanup<byte,false>::size_type,const void *)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(246) : see reference to function template instantiation 'unsigned char *CryptoPP::AllocatorWithCleanup<byte,false>::allocate(CryptoPP::AllocatorWithCleanup<byte,false>::size_type,const void *)' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(129) : see reference to class template instantiation 'CryptoPP::AllocatorWithCleanup<byte,false>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\secblock.h(108): warning C4127: conditional expression is constant
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(104) : while compiling class template member function 'void CryptoPP::AllocatorWithCleanup<byte,false>::deallocate(void *,CryptoPP::AllocatorWithCleanup<byte,false>::size_type)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(261) : see reference to function template instantiation 'void CryptoPP::AllocatorWithCleanup<byte,false>::deallocate(void *,CryptoPP::AllocatorWithCleanup<byte,false>::size_type)' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(972): warning C4100: 'signatureLength' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(973) : while compiling class template member function 'size_t CryptoPP::DL_SignatureSchemeBase<CryptoPP::PK_Signer,CryptoPP::DL_PrivateKey<CryptoPP::Integer>>::MaxRecoverableLengthFromSignatureLength(size_t) const'
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(995) : see reference to class template instantiation 'CryptoPP::DL_SignatureSchemeBase<CryptoPP::PK_Signer,CryptoPP::DL_PrivateKey<CryptoPP::Integer>>' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(25) : see reference to class template instantiation 'CryptoPP::DL_SignerBase<CryptoPP::Integer>' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1282) : see reference to class template instantiation 'CryptoPP::AlgorithmImpl<BASE,CryptoPP::DSA2<CryptoPP::SHA>>' being compiled
    8>          with
    8>          [
    8>              BASE=CryptoPP::DL_SignerBase<CryptoPP::Integer>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1317) : see reference to class template instantiation 'CryptoPP::DL_ObjectImplBase<BASE,SCHEME_OPTIONS,KEY>' being compiled
    8>          with
    8>          [
    8>              BASE=CryptoPP::DL_SignerBase<CryptoPP::Integer>
    8>  ,            SCHEME_OPTIONS=CryptoPP::DL_SignatureSchemeOptions<CryptoPP::DSA2<CryptoPP::SHA>,CryptoPP::DL_Keys_DSA,CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>,CryptoPP::DL_SignatureMessageEncodingMethod_DSA,CryptoPP::SHA>
    8>  ,            KEY=CryptoPP::DL_PrivateKey_WithSignaturePairwiseConsistencyTest<CryptoPP::DL_PrivateKey_GFP<CryptoPP::DL_GroupParameters_DSA>,CryptoPP::DSA2<CryptoPP::SHA>>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1339) : see reference to class template instantiation 'CryptoPP::DL_ObjectImpl<CryptoPP::DL_SignerBase<CryptoPP::Integer>,SCHEME_OPTIONS,CryptoPP::DL_PrivateKey_WithSignaturePairwiseConsistencyTest<CryptoPP::DL_PrivateKey_GFP<CryptoPP::DL_GroupParameters_DSA>,CryptoPP::DSA2<CryptoPP::SHA>>>' being compiled
    8>          with
    8>          [
    8>              SCHEME_OPTIONS=CryptoPP::DL_SignatureSchemeOptions<CryptoPP::DSA2<CryptoPP::SHA>,CryptoPP::DL_Keys_DSA,CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>,CryptoPP::DL_SignatureMessageEncodingMethod_DSA,CryptoPP::SHA>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1489) : see reference to class template instantiation 'CryptoPP::DL_SignerImpl<CryptoPP::DL_SignatureSchemeOptions<ALG_INFO,KEYS,SA,MEM,H>>' being compiled
    8>          with
    8>          [
    8>              ALG_INFO=CryptoPP::DSA2<CryptoPP::SHA>
    8>  ,            KEYS=CryptoPP::DL_Keys_DSA
    8>  ,            SA=CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>
    8>  ,            MEM=CryptoPP::DL_SignatureMessageEncodingMethod_DSA
    8>  ,            H=CryptoPP::SHA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(830) : see reference to class template instantiation 'CryptoPP::PK_FinalTemplate<CryptoPP::DL_SignerImpl<CryptoPP::DL_SignatureSchemeOptions<ALG_INFO,KEYS,SA,MEM,H>>>' being compiled
    8>          with
    8>          [
    8>              ALG_INFO=CryptoPP::DSA2<CryptoPP::SHA>
    8>  ,            KEYS=CryptoPP::DL_Keys_DSA
    8>  ,            SA=CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>
    8>  ,            MEM=CryptoPP::DL_SignatureMessageEncodingMethod_DSA
    8>  ,            H=CryptoPP::SHA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(825) : while compiling class template member function 'void CryptoPP::DL_PrivateKey_WithSignaturePairwiseConsistencyTest<CryptoPP::DL_PrivateKey_GFP<CryptoPP::DL_GroupParameters_DSA>,CryptoPP::DSA2<CryptoPP::SHA>>::GenerateRandom(CryptoPP::RandomNumberGenerator &,const CryptoPP::NameValuePairs &)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(408) : see reference to class template instantiation 'CryptoPP::DL_PrivateKey_WithSignaturePairwiseConsistencyTest<CryptoPP::DL_PrivateKey_GFP<CryptoPP::DL_GroupParameters_DSA>,CryptoPP::DSA2<CryptoPP::SHA>>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1086): warning C4100: 'signatureLength' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1087) : while compiling class template member function 'void CryptoPP::DL_VerifierBase<CryptoPP::Integer>::InputSignature(CryptoPP::PK_MessageAccumulator &,const byte *,size_t) const'
    8>          f:\core\sln\srcs\extern\include\cryptopp\simple.h(25) : see reference to class template instantiation 'CryptoPP::DL_VerifierBase<CryptoPP::Integer>' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1282) : see reference to class template instantiation 'CryptoPP::AlgorithmImpl<BASE,CryptoPP::DSA2<CryptoPP::SHA>>' being compiled
    8>          with
    8>          [
    8>              BASE=CryptoPP::DL_VerifierBase<CryptoPP::Integer>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1317) : see reference to class template instantiation 'CryptoPP::DL_ObjectImplBase<BASE,SCHEME_OPTIONS,KEY>' being compiled
    8>          with
    8>          [
    8>              BASE=CryptoPP::DL_VerifierBase<CryptoPP::Integer>
    8>  ,            SCHEME_OPTIONS=CryptoPP::DL_SignatureSchemeOptions<CryptoPP::DSA2<CryptoPP::SHA>,CryptoPP::DL_Keys_DSA,CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>,CryptoPP::DL_SignatureMessageEncodingMethod_DSA,CryptoPP::SHA>
    8>  ,            KEY=CryptoPP::DL_PublicKey_GFP<CryptoPP::DL_GroupParameters_DSA>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1352) : see reference to class template instantiation 'CryptoPP::DL_ObjectImpl<CryptoPP::DL_VerifierBase<CryptoPP::Integer>,SCHEME_OPTIONS,CryptoPP::DL_PublicKey_GFP<CryptoPP::DL_GroupParameters_DSA>>' being compiled
    8>          with
    8>          [
    8>              SCHEME_OPTIONS=CryptoPP::DL_SignatureSchemeOptions<CryptoPP::DSA2<CryptoPP::SHA>,CryptoPP::DL_Keys_DSA,CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>,CryptoPP::DL_SignatureMessageEncodingMethod_DSA,CryptoPP::SHA>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1489) : see reference to class template instantiation 'CryptoPP::DL_VerifierImpl<CryptoPP::DL_SignatureSchemeOptions<ALG_INFO,KEYS,SA,MEM,H>>' being compiled
    8>          with
    8>          [
    8>              ALG_INFO=CryptoPP::DSA2<CryptoPP::SHA>
    8>  ,            KEYS=CryptoPP::DL_Keys_DSA
    8>  ,            SA=CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>
    8>  ,            MEM=CryptoPP::DL_SignatureMessageEncodingMethod_DSA
    8>  ,            H=CryptoPP::SHA
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(831) : see reference to class template instantiation 'CryptoPP::PK_FinalTemplate<CryptoPP::DL_VerifierImpl<CryptoPP::DL_SignatureSchemeOptions<ALG_INFO,KEYS,SA,MEM,H>>>' being compiled
    8>          with
    8>          [
    8>              ALG_INFO=CryptoPP::DSA2<CryptoPP::SHA>
    8>  ,            KEYS=CryptoPP::DL_Keys_DSA
    8>  ,            SA=CryptoPP::DL_Algorithm_GDSA<CryptoPP::Integer>
    8>  ,            MEM=CryptoPP::DL_SignatureMessageEncodingMethod_DSA
    8>  ,            H=CryptoPP::SHA
    8>          ]
    8>f:\core\sln\srcs\extern\include\cryptopp\secblock.h(149): warning C4100: 'n' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(150) : while compiling class template member function 'void CryptoPP::NullAllocator<T>::deallocate(void *,CryptoPP::NullAllocator<T>::size_type)'
    8>          with
    8>          [
    8>              T=byte
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(202) : see reference to function template instantiation 'void CryptoPP::NullAllocator<T>::deallocate(void *,CryptoPP::NullAllocator<T>::size_type)' being compiled
    8>          with
    8>          [
    8>              T=byte
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(232) : see reference to class template instantiation 'CryptoPP::NullAllocator<T>' being compiled
    8>          with
    8>          [
    8>              T=byte
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(241) : see reference to class template instantiation 'CryptoPP::FixedSizeAllocatorWithCleanup<T,32,CryptoPP::NullAllocator<T>,false>' being compiled
    8>          with
    8>          [
    8>              T=byte
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(423) : see reference to class template instantiation 'CryptoPP::SecBlock<T,A>' being compiled
    8>          with
    8>          [
    8>              T=byte
    8>  ,            A=CryptoPP::FixedSizeAllocatorWithCleanup<byte,32,CryptoPP::NullAllocator<byte>,false>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\randpool.h(25) : see reference to class template instantiation 'CryptoPP::FixedSizeSecBlock<byte,32,CryptoPP::FixedSizeAllocatorWithCleanup<T,32,CryptoPP::NullAllocator<T>,false>>' being compiled
    8>          with
    8>          [
    8>              T=byte
    8>          ]
    8>f:\core\sln\srcs\extern\include\cryptopp\secblock.h(149): warning C4100: 'p' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1065): warning C4100: 'ma' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1066) : while compiling class template member function 'void CryptoPP::DL_SignerBase<CryptoPP::Integer>::RestartMessageAccumulator(CryptoPP::RandomNumberGenerator &,CryptoPP::PK_MessageAccumulatorBase &) const'
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1344) : see reference to function template instantiation 'void CryptoPP::DL_SignerBase<CryptoPP::Integer>::RestartMessageAccumulator(CryptoPP::RandomNumberGenerator &,CryptoPP::PK_MessageAccumulatorBase &) const' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(1065): warning C4100: 'rng' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\secblock.h(143): warning C4100: 'n' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(144) : while compiling class template member function 'unsigned int *CryptoPP::NullAllocator<T>::allocate(CryptoPP::NullAllocator<T>::size_type,const void *)'
    8>          with
    8>          [
    8>              T=CryptoPP::word32
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(189) : see reference to function template instantiation 'unsigned int *CryptoPP::NullAllocator<T>::allocate(CryptoPP::NullAllocator<T>::size_type,const void *)' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::word32
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(232) : see reference to class template instantiation 'CryptoPP::NullAllocator<T>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::word32
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(241) : see reference to class template instantiation 'CryptoPP::FixedSizeAllocatorWithCleanup<T,60,CryptoPP::NullAllocator<T>,true>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::word32
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(423) : see reference to class template instantiation 'CryptoPP::SecBlock<T,A>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::word32
    8>  ,            A=CryptoPP::FixedSizeAllocatorWithCleanup<CryptoPP::word32,60,CryptoPP::NullAllocator<CryptoPP::word32>,true>
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(430) : see reference to class template instantiation 'CryptoPP::FixedSizeSecBlock<T,60,CryptoPP::FixedSizeAllocatorWithCleanup<T,60,CryptoPP::NullAllocator<T>,true>>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::word32
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\rijndael.h(37) : see reference to class template instantiation 'CryptoPP::FixedSizeAlignedSecBlock<CryptoPP::word32,60,true>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(155): warning C4100: 'dummy' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(129) : see reference to function template instantiation 'CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_GFP,CryptoPP::DL_GroupParameters_IntegerBased> CryptoPP::GetValueHelper<CryptoPP::DL_GroupParameters_IntegerBased,CryptoPP::DL_GroupParameters_GFP>(const T *,const char *,const type_info &,void *,const CryptoPP::NameValuePairs *,BASE *)' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::DL_GroupParameters_GFP
    8>  ,            BASE=CryptoPP::DL_GroupParameters_IntegerBased
    8>          ]
    8>f:\core\sln\srcs\extern\include\cryptopp\misc.h(366): warning C4127: conditional expression is constant
    8>          F:\Core\sln\Srcs\extern\include\cryptopp/skipjack.h(25) : see reference to function template instantiation 'unsigned int CryptoPP::GetAlignmentOf<CryptoPP::word16>(T *)' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::word16
    8>          ]
    8>f:\core\sln\srcs\extern\include\cryptopp\misc.h(363): warning C4100: 'dummy' : unreferenced formal parameter
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(229): warning C4100: 'dummy' : unreferenced formal parameter
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(96) : see reference to function template instantiation 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>,CryptoPP::DL_GroupParameters_IntegerBased> CryptoPP::AssignFromHelper<CryptoPP::DL_GroupParameters_IntegerBased,CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>>(T *,const CryptoPP::NameValuePairs &,BASE *)' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>
    8>  ,            BASE=CryptoPP::DL_GroupParameters_IntegerBased
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\gfpcrypt.h(96) : while compiling class template member function 'void CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation,CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer>>::AssignFrom(const CryptoPP::NameValuePairs &)'
    8>f:\core\sln\srcs\extern\include\cryptopp\misc.h(537): warning C4127: conditional expression is constant
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(105) : see reference to function template instantiation 'void CryptoPP::SecureWipeArray<T>(T *,size_t)' being compiled
    8>          with
    8>          [
    8>              T=byte
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(104) : while compiling class template member function 'void CryptoPP::AllocatorWithCleanup<byte,false>::deallocate(void *,CryptoPP::AllocatorWithCleanup<byte,false>::size_type)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\secblock.h(261) : see reference to function template instantiation 'void CryptoPP::AllocatorWithCleanup<byte,false>::deallocate(void *,CryptoPP::AllocatorWithCleanup<byte,false>::size_type)' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\misc.h(539): warning C4127: conditional expression is constant
    8>f:\core\sln\srcs\extern\include\cryptopp\misc.h(541): warning C4127: conditional expression is constant
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(226): warning C4512: 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PrivateKey<CryptoPP::Integer>,CryptoPP::DL_PrivateKey<CryptoPP::Integer>>' : assignment operator could not be generated
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(697) : see reference to class template instantiation 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PrivateKey<CryptoPP::Integer>,CryptoPP::DL_PrivateKey<CryptoPP::Integer>>' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(695) : while compiling class template member function 'void CryptoPP::DL_PrivateKey<CryptoPP::Integer>::AssignFrom(const CryptoPP::NameValuePairs &)'
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(190) : see reference to function template instantiation 'void CryptoPP::DL_PrivateKey<CryptoPP::Integer>::AssignFrom(const CryptoPP::NameValuePairs &)' being compiled
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(750) : see reference to class template instantiation 'CryptoPP::DL_PrivateKey<CryptoPP::Integer>' being compiled
    8>f:\core\sln\srcs\extern\include\cryptopp\algparam.h(226): warning C4512: 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PublicKey<T>,CryptoPP::DL_PublicKey<T>>' : assignment operator could not be generated
    8>          with
    8>          [
    8>              T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(714) : see reference to class template instantiation 'CryptoPP::AssignFromHelperClass<CryptoPP::DL_PublicKey<T>,CryptoPP::DL_PublicKey<T>>' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(707) : while compiling class template member function 'void CryptoPP::DL_PublicKey<T>::AssignFrom(const CryptoPP::NameValuePairs &)'
    8>          with
    8>          [
    8>              T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(190) : see reference to function template instantiation 'void CryptoPP::DL_PublicKey<T>::AssignFrom(const CryptoPP::NameValuePairs &)' being compiled
    8>          with
    8>          [
    8>              T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(86) : while compiling class template member function 'CryptoPP::GetValueHelperClass<CryptoPP::DL_PublicKeyImpl<GP>,CryptoPP::DL_PublicKey<T>>::GetValueHelperClass(const CryptoPP::DL_PublicKeyImpl<GP> *,const char *,const type_info &,void *,const CryptoPP::NameValuePairs *)'
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>  ,            T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\algparam.h(157) : see reference to function template instantiation 'CryptoPP::GetValueHelperClass<CryptoPP::DL_PublicKeyImpl<GP>,CryptoPP::DL_PublicKey<T>>::GetValueHelperClass(const CryptoPP::DL_PublicKeyImpl<GP> *,const char *,const type_info &,void *,const CryptoPP::NameValuePairs *)' being compiled
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>  ,            T=CryptoPP::Integer
    8>          ]
    8>          f:\core\sln\srcs\extern\include\cryptopp\pubkey.h(854) : see reference to class template instantiation 'CryptoPP::GetValueHelperClass<CryptoPP::DL_PublicKeyImpl<GP>,CryptoPP::DL_PublicKey<T>>' being compiled
    8>          with
    8>          [
    8>              GP=CryptoPP::DL_GroupParameters_DSA
    8>  ,            T=CryptoPP::Integer
    8>          ]
    8>f:\core\sln\srcs\extern\include\cryptopp\misc.h(548): warning C4505: 'CryptoPP::StringNarrow' : unreferenced local function has been removed
    8>  CPostIt.cpp
    8>  CRC32.cpp
    8>  Debug.cpp
    8>  error.cpp
    8>  FileBase.cpp
    8>  FileDir.cpp
    8>  FileLoader.cpp
    8>  lzo.cpp
    8>  MappedFile.cpp
    8>  Random.cpp
    8>  StdAfx.cpp
    8>  Stl.cpp
    8>  tea.cpp
    8>  TempFile.cpp
    8>  Timer.cpp
    8>  Generating Code...
    8>  Compiling...
    8>  Utils.cpp
    8>Utils.cpp(340): warning C4127: conditional expression is constant
    8>  Generating Code...
    8>f:\core\sln\srcs\client\eterbase\utils.cpp(627): warning C4706: assignment within conditional expression
    6>SpeedGrassWrapper.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    6>SpeedGrassRT.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    6>  SpeedTreeLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\SpeedTreeLib\.\Release\SpeedTreeLib.lib
    9>------ Rebuild All started: Project: eterGrnLib, Configuration: Release Win32 ------
    8>StdAfx.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    8>  eterBase_VC90.vcxproj -> F:\Core\sln\Srcs\Client\EterBase\.\Release\eterBase.lib
    10>------ Rebuild All started: Project: eterImageLib, Configuration: Release Win32 ------
    10>  StdAfx.cpp
    10>f:\core\sln\srcs\client\eterimagelib\stdafx.h(33): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    10>  DXTCImage.cpp
    9>  StdAfx.cpp
    9>  LODController.cpp
    10>f:\core\sln\srcs\client\eterimagelib\StdAfx.h(33): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    10>DXTCImage.cpp(95): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    10>DXTCImage.cpp(96): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strupr. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(259) : see declaration of 'strupr'
    10>DXTCImage.cpp(926): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    10>DXTCImage.cpp(932): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    10>DXTCImage.cpp(937): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    10>DXTCImage.cpp(942): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    10>DXTCImage.cpp(947): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    10>DXTCImage.cpp(952): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    10>DXTCImage.cpp(957): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    10>  Image.cpp
    10>f:\core\sln\srcs\client\eterimagelib\StdAfx.h(33): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    10>  TGAImage.cpp
    9>  Material.cpp
    10>f:\core\sln\srcs\client\eterimagelib\StdAfx.h(33): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    10>TGAImage.cpp(311): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    10>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    10>  Generating Code...
    9>f:\core\sln\srcs\client\etergrnlib\../eterbase/Filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    9>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    9>f:\core\sln\srcs\client\etergrnlib\../eterbase/Filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    9>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    9>Material.cpp(209): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    9>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    9>Material.cpp(230): warning C4996: 'strnicmp': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strnicmp. See online help for details.
    9>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(255) : see declaration of 'strnicmp'
    10>  eterImageLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\eterImageLib\.\Release\eterImageLib.lib
    9>  Mesh.cpp
    11>------ Rebuild All started: Project: eterPythonLib, Configuration: Release Win32 ------
    11>  StdAfx.cpp
    9>  Model.cpp
    9>  ModelInstance.cpp
    11>  PythonGridSlotWindow.cpp
    11>  PythonSlotWindow.cpp
    11>  PythonWindow.cpp
    11>  PythonWindowManager.cpp
    11>  PythonWindowManagerModule.cpp
    11>  PythonGraphic.cpp
    11>  PythonGraphicImageModule.cpp
    11>  PythonGraphicModule.cpp
    9>  ModelInstanceCollisionDetection.cpp
    11>  PythonGraphicTextModule.cpp
    11>  PythonGraphicThingModule.cpp
    11>  Generating Code...
    9>  ModelInstanceModel.cpp
    11>  eterPythonLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\eterPythonLib\.\Release\eterPythonLib.lib
    12>------ Rebuild All started: Project: eterlib, Configuration: Release Win32 ------
    9>  ModelInstanceMotion.cpp
    12>  StdAfx.cpp
    12>  AttributeData.cpp
    12>  AttributeInstance.cpp
    9>  ModelInstanceRender.cpp
    12>  Camera.cpp
    12>  CollisionData.cpp
    12>  ColorTransitionHelper.cpp
    12>  Decal.cpp
    12>  EnvironmentMap.cpp
    12>  FileLoaderThread.cpp
    9>  ModelInstanceUpdate.cpp
    12>  GrpCollisionObject.cpp
    12>  GrpColor.cpp
    12>  GrpColorInstance.cpp
    12>  GrpD3DXBuffer.cpp
    12>  GrpDIB.cpp
    12>  GrpIndexBuffer.cpp
    12>  GrpLightManager.cpp
    9>  Motion.cpp
    12>  GrpObjectInstance.cpp
    12>  GrpPixelShader.cpp
    12>  GrpRatioInstance.cpp
    12>  GrpShadowTexture.cpp
    12>  GrpVertexBuffer.cpp
    9>Motion.cpp(66): warning C4996: 'stricmp': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _stricmp. See online help for details.
    9>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(253) : see declaration of 'stricmp'
    9>  Thing.cpp
    12>  Generating Code...
    12>  Compiling...
    12>  GrpVertexBufferDynamic.cpp
    12>  GrpVertexBufferStatic.cpp
    12>  GrpVertexShader.cpp
    12>  Input.cpp
    12>  LensFlare.cpp
    12>  lineintersect_utils.cpp
    12>  MSApplication.cpp
    12>  MSWindow.cpp
    12>  Mutex.cpp
    9>  ThingInstance.cpp
    12>  parser.cpp
    12>  PathStack.cpp
    12>  ReferenceObject.cpp
    12>  ScreenFilter.cpp
    12>  SkyBox.cpp
    12>  TargaResource.cpp
    12>  Thread.cpp
    12>  Util.cpp
    9>  Util.cpp
    12>  CullingManager.cpp
    12>  GrpBase.cpp
    12>  GrpDetector.cpp
    12>  Generating Code...
    9>  Generating Code...
    12>  Compiling...
    12>  GrpDevice.cpp
    12>  GrpMath.cpp
    12>  GrpScreen.cpp
    12>  JpegFile.cpp
    12>  StateManager.cpp
    12>  Resource.cpp
    9>  eterGrnLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\eterGrnLib\.\Release\eterGrnLib.lib
    13>------ Rebuild All started: Project: gamelib, Configuration: Release Win32 ------
    12>  ResourceManager.cpp
    13>  StdAfx.cpp
    12>  GrpExpandedImageInstance.cpp
    12>  GrpImage.cpp
    12>  GrpImageInstance.cpp
    12>  GrpImageTexture.cpp
    13>  ActorInstance.cpp
    12>  GrpMarkInstance.cpp
    12>  GrpSubImage.cpp
    12>  GrpTexture.cpp
    12>  NetAddress.cpp
    12>  NetDatagram.cpp
    12>  NetDatagramReceiver.cpp
    12>  NetDatagramSender.cpp
    12>  NetDevice.cpp
    12>  NetPacketHeaderMap.cpp
    12>  Generating Code...
    13>  ActorInstanceAttach.cpp
    12>  Compiling...
    12>  NetStream.cpp
    12>  GrpFontTexture.cpp
    12>  GrpText.cpp
    12>  GrpTextInstance.cpp
    13>  ActorInstanceBattle.cpp
    12>  TextTag.cpp
    12>  BlockTexture.cpp
    12>  DibBar.cpp
    12>  TextBar.cpp
    12>  IME.cpp
    12>IME.cpp(309): warning C4996: 'GetVersionExA': was declared deprecated
    12>          C:\Program Files (x86)\Windows Kits\8.1\Include\um\sysinfoapi.h(433) : see declaration of 'GetVersionExA'
    12>IME.cpp(1182): warning C4996: 'GetVersionExA': was declared deprecated
    12>          C:\Program Files (x86)\Windows Kits\8.1\Include\um\sysinfoapi.h(433) : see declaration of 'GetVersionExA'
    12>  TextFileLoader.cpp
    13>  ActorInstanceBlend.cpp
    12>  Generating Code...
    13>  ActorInstanceCollisionDetection.cpp
    12>  eterlib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\EterLib\.\Release\eterlib.lib
    14>------ Rebuild All started: Project: mileslib, Configuration: Release Win32 ------
    14>  Stdafx.cpp
    13>  ActorInstanceData.cpp
    14>  SoundBase.cpp
    14>  SoundData.cpp
    13>  ActorInstanceEvent.cpp
    14>SoundData.cpp(19): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    14>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    13>  ActorInstanceFly.cpp
    14>  SoundInstance2D.cpp
    14>  SoundInstance3D.cpp
    13>  ActorInstanceMotion.cpp
    14>  SoundInstanceStream.cpp
    14>  SoundManager.cpp
    13>  ActorInstanceMotionEvent.cpp
    14>  SoundManager2D.cpp
    14>  SoundManager3D.cpp
    13>  ActorInstancePosition.cpp
    14>  SoundManagerStream.cpp
    13>  ActorInstanceRender.cpp
    14>  Type.cpp
    13>  ActorInstanceRotation.cpp
    14>Type.cpp(48): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    14>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    14>Type.cpp(92): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    14>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    14>Type.cpp(97): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    14>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    14>  Generating Code...
    14>  mileslib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\MilesLib\.\Release\mileslib.lib
    13>  ActorInstanceSync.cpp
    15>------ Rebuild All started: Project: scriptLib, Configuration: Release Win32 ------
    15>  StdAfx.cpp
    13>  ActorInstanceWeaponTrace.cpp
    15>  PythonDebugModule.cpp
    15>  PythonLauncher.cpp
    13>  DungeonBlock.cpp
    15>  PythonMarshal.cpp
    13>  PhysicsObject.cpp
    15>  PythonUtils.cpp
    13>  RaceData.cpp
    15>  Resource.cpp
    13>  RaceDataFile.cpp
    15>  Generating Code...
    15>  scriptLib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\scriptLib\.\Release\scriptLib.lib
    13>  RaceManager.cpp
    13>  Generating Code...
    13>  Compiling...
    13>  RaceMotionData.cpp
    13>  WeaponTrace.cpp
    13>  Area.cpp
    13>  AreaLoaderThread.cpp
    13>  AreaTerrain.cpp
    13>  MapBase.cpp
    13>  MapManager.cpp
    13>  MapOutdoor.cpp
    13>  MapOutdoorCharacterShadow.cpp
    13>  MapOutdoorIndexBuffer.cpp
    13>  MapOutdoorLoad.cpp
    13>  MapOutdoorQuadtree.cpp
    13>  MapOutdoorRender.cpp
    13>  MapOutdoorRenderHTP.cpp
    13>  MapOutdoorRenderSTP.cpp
    13>  MapOutdoorUpdate.cpp
    13>  MapOutdoorWater.cpp
    13>  MapType.cpp
    13>  MapUtil.cpp
    13>  MonsterAreaInfo.cpp
    13>  Generating Code...
    13>  Compiling...
    13>  Property.cpp
    13>  PropertyLoader.cpp
    13>  PropertyManager.cpp
    13>  SnowEnvironment.cpp
    13>  SnowParticle.cpp
    13>  TerrainDecal.cpp
    13>  TerrainPatch.cpp
    13>  TerrainQuadtree.cpp
    13>  GameEventManager.cpp
    13>  GameType.cpp
    13>  GameUtil.cpp
    13>  ItemData.cpp
    13>  ItemManager.cpp
    13>  FlyingData.cpp
    13>  FlyingInstance.cpp
    13>  FlyingObjectManager.cpp
    13>  FlyTarget.cpp
    13>  FlyTrace.cpp
    13>  Generating Code...
    13>  gamelib_VC90.vcxproj -> F:\Core\sln\Srcs\Client\GameLib\.\Release\gamelib.lib
    16>------ Rebuild All started: Project: UserInterface, Configuration: Release Win32 ------
    16>  StdAfx.cpp
    16>f:\core\sln\srcs\client\eterbase\filename.h(187): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>f:\core\sln\srcs\client\eterbase\filename.h(354): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>f:\core\sln\srcs\extern\python2\pymath.h(22): warning C4273: 'round' : inconsistent dll linkage
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\math.h(516) : see previous definition of 'round'
    16>  AffectFlagContainer.cpp
    16>  InstanceBase.cpp
    16>InstanceBase.cpp(967): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>InstanceBase.cpp(971): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  InstanceBaseBattle.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  InstanceBaseEffect.cpp
    16>InstanceBaseEffect.cpp(187): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>InstanceBaseEffect.cpp(187): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>InstanceBaseEffect.cpp(660): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>InstanceBaseEffect.cpp(660): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  InstanceBaseEvent.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  InstanceBaseMotion.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  InstanceBaseMovement.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  InstanceBaseTransform.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  CameraProcedure.cpp
    16>  PythonBackground.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonBackgroundModule.cpp
    16>PythonBackgroundModule.cpp(280): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonBackgroundModule.cpp(280): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>  PythonCharacterManager.cpp
    16>PythonCharacterManager.cpp(126): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonCharacterManager.cpp(126): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonCharacterManagerModule.cpp
    16>PythonCharacterManagerModule.cpp(106): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonCharacterManagerModule.cpp(106): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonCharacterManagerModule.cpp(111): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonCharacterManagerModule.cpp(117): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonCharacterModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonEffectModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonEventManager.cpp
    16>PythonEventManager.cpp(130): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>  PythonEventManagerMoudle.cpp
    16>  PythonGameEventManagerModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonItem.cpp
    16>PythonItem.cpp(18): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonItem.cpp(18): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonItemModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  Generating Code...
    16>  Compiling...
    16>  PythonNonPlayer.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNonPlayerModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayer.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayerEventHandler.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayerInput.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayerInputKeyboard.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayerInputMouse.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayerModule.cpp
    16>PythonPlayerModule.cpp(763): warning C4101: 'iSourceSlotIndex' : unreferenced local variable
    16>PythonPlayerModule.cpp(978): warning C4101: 'iSlotPos' : unreferenced local variable
    16>PythonPlayerModule.cpp(1039): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonPlayerModule.cpp(1041): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonPlayerModule.cpp(1046): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonPlayerModule.cpp(1047): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonPlayerModule.cpp(1055): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonPlayerModule.cpp(1055): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonPlayerModule.cpp(1057): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonPlayerModule.cpp(1057): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonPlayerModule.cpp(1061): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonPlayerModule.cpp(1061): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonPlayerModule.cpp(1063): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonPlayerModule.cpp(1063): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPlayerSkill.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonQuest.cpp
    16>  PythonSkill.cpp
    16>PythonSkill.cpp(255): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(255): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(412): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(412): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(419): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(419): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(614): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(614): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonSkill.cpp(625): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(625): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonSkill.cpp(640): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(640): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonSkill.cpp(663): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(663): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonSkill.cpp(688): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(688): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonSkill.cpp(789): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonSkill.cpp(861): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(861): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(868): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(868): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(1319): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(1319): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(1328): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(1328): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonSkill.cpp(1343): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonSkill.cpp(1343): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonChat.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonChatModule.cpp
    16>PythonChatModule.cpp(420): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonChatModule.cpp(425): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonChatModule.cpp(431): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonChatModule.cpp(433): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonChatModule.cpp(440): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonChatModule.cpp(440): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonChatModule.cpp(442): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonChatModule.cpp(442): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>  PythonExchange.cpp
    16>PythonExchange.cpp(6): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonExchange.cpp(11): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>  PythonExchangeModule.cpp
    16>  PythonFlyModule.cpp
    16>  PythonGuild.cpp
    16>  PythonMessenger.cpp
    16>  PythonMiniMap.cpp
    16>PythonMiniMap.cpp(553): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(553): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonMiniMap.cpp(559): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(559): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonMiniMap.cpp(565): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(565): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>PythonMiniMap.cpp(815): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(815): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonMiniMap.cpp(831): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(831): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonMiniMap.cpp(880): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(880): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonMiniMap.cpp(883): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonMiniMap.cpp(883): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonMiniMapModule.cpp
    16>  Generating Code...
    16>  Compiling...
    16>  PythonSafeBox.cpp
    16>  PythonShop.cpp
    16>  PythonTextTail.cpp
    16>PythonTextTail.cpp(45): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonTextTail.cpp(49): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonTextTailModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonPackModule.cpp
    16>  ProcessScanner.cpp
    16>  PythonApplication.cpp
    16>PythonApplication.cpp(129): warning C4995: '_vsnprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(129): warning C4996: '_vsnprintf': This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_vsnprintf'
    16>PythonApplication.cpp(296): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonApplication.cpp(375): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonApplication.cpp(1015): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1015): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1016): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1016): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1017): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1017): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1018): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1018): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1019): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1019): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1020): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1020): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1021): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1021): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonApplication.cpp(1071): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonApplication.cpp(1071): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationCamera.cpp
    16>PythonApplicationCamera.cpp(362): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationCursor.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationEvent.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationLogo.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationModule.cpp
    16>PythonApplicationModule.cpp(187): warning C4996: '_controlfp': This function or variable may be unsafe. Consider using _controlfp_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\float.h(120) : see declaration of '_controlfp'
    16>PythonApplicationModule.cpp(270): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonApplicationModule.cpp(1128): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonApplicationModule.cpp(1132): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationProcedure.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonApplicationWebPage.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonIME.cpp
    16>  PythonIMEModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonProfilerModule.cpp
    16>  PythonSoundManagerModule.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonSystem.cpp
    16>PythonSystem.cpp(268): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonSystem.cpp(390): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonSystem.cpp(399): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(304) : see declaration of 'sscanf'
    16>PythonSystem.cpp(430): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonSystem.cpp(493): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonSystem.cpp(548): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>PythonSystem.cpp(567): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonSystemModule.cpp
    16>  Generating Code...
    16>  Compiling...
    16>  GuildMarkDownloader.cpp
    16>GuildMarkDownloader.cpp(531): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  GuildMarkUploader.cpp
    16>GuildMarkUploader.cpp(134): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>  MarkImage.cpp
    16>  MarkManager.cpp
    16>MarkManager.cpp(26): warning C4996: 'mkdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _mkdir. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\direct.h(140) : see declaration of 'mkdir'
    16>MarkManager.cpp(47): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>MarkManager.cpp(47): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>MarkManager.cpp(61): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>MarkManager.cpp(61): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>MarkManager.cpp(62): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>MarkManager.cpp(74): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(304) : see declaration of 'sscanf'
    16>MarkManager.cpp(88): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>MarkManager.cpp(88): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>MarkManager.cpp(89): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>MarkManager.cpp(331): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>MarkManager.cpp(361): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>  Locale.cpp
    16>Locale.cpp(36): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>Locale.cpp(47): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(304) : see declaration of 'sscanf'
    16>Locale.cpp(51): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>Locale.cpp(51): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>Locale.cpp(52): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>Locale.cpp(52): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>Locale.cpp(244): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>Locale.cpp(244): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>Locale.cpp(245): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>Locale.cpp(245): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  AccountConnector.cpp
    16>AccountConnector.cpp(71): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>AccountConnector.cpp(85): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>AccountConnector.cpp(99): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>AccountConnector.cpp(320): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>AccountConnector.cpp(321): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>  InsultChecker.cpp
    16>  NetworkActorManager.cpp
    16>NetworkActorManager.cpp(367): warning C4800: 'BOOL' : forcing value to bool 'true' or 'false' (performance warning)
    16>NetworkActorManager.cpp(417): warning C4800: 'BOOL' : forcing value to bool 'true' or 'false' (performance warning)
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  ProcessCRC.cpp
    16>  PythonExceptionSender.cpp
    16>  PythonNetworkDatagram.cpp
    16>  PythonNetworkDatagramModule.cpp
    16>  PythonNetworkStream.cpp
    16>PythonNetworkStream.cpp(445): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>PythonNetworkStream.cpp(445): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamCommand.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamEvent.cpp
    16>  PythonNetworkStreamModule.cpp
    16>  PythonNetworkStreamPhaseGame.cpp
    16>PythonNetworkStreamPhaseGame.cpp(1059): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(1087): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(1104): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(1359): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonNetworkStreamPhaseGame.cpp(1359): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonNetworkStreamPhaseGame.cpp(1369): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonNetworkStreamPhaseGame.cpp(1369): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonNetworkStreamPhaseGame.cpp(1426): warning C4995: '_snprintf': name was marked as #pragma deprecated
    16>PythonNetworkStreamPhaseGame.cpp(1426): warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(346) : see declaration of '_snprintf'
    16>PythonNetworkStreamPhaseGame.cpp(1451): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(1469): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(2270): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(2287): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(3091): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(3392): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(3487): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(3898): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(4155): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(4156): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(4168): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseGame.cpp(4169): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamPhaseGameActor.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamPhaseGameItem.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamPhaseHandShake.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  Generating Code...
    16>  Compiling...
    16>  PythonNetworkStreamPhaseLoading.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamPhaseLogin.cpp
    16>PythonNetworkStreamPhaseLogin.cpp(242): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(243): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(259): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(260): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(280): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(322): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(357): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseLogin.cpp(371): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>  PythonNetworkStreamPhaseOffline.cpp
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  PythonNetworkStreamPhaseSelect.cpp
    16>PythonNetworkStreamPhaseSelect.cpp(183): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseSelect.cpp(200): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseSelect.cpp(222): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>PythonNetworkStreamPhaseSelect.cpp(299): warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(195) : see declaration of 'strncpy'
    16>  ServerStateChecker.cpp
    16>  ServerStateCheckerModule.cpp
    16>  CheckLatestFiles.cpp
    16>  Hackshield.cpp
    16>  NProtectGameGuard.cpp
    16>  WiseLogicXTrap.cpp
    16>  GameType.cpp
    16>  MovieMan.cpp
    16>MovieMan.cpp(380): warning C4996: 'wcsncat': This function or variable may be unsafe. Consider using wcsncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(316) : see declaration of 'wcsncat'
    16>MovieMan.cpp(381): warning C4996: 'wcsncat': This function or variable may be unsafe. Consider using wcsncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(316) : see declaration of 'wcsncat'
    16>MovieMan.cpp(383): warning C4996: 'wcsncpy': This function or variable may be unsafe. Consider using wcsncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(323) : see declaration of 'wcsncpy'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  UserInterface.cpp
    16>UserInterface.cpp(91): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>UserInterface.cpp(91): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>UserInterface.cpp(131): warning C4995: 'strcat': name was marked as #pragma deprecated
    16>UserInterface.cpp(131): warning C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(118) : see declaration of 'strcat'
    16>UserInterface.cpp(132): warning C4995: 'strcat': name was marked as #pragma deprecated
    16>UserInterface.cpp(132): warning C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(118) : see declaration of 'strcat'
    16>UserInterface.cpp(134): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>UserInterface.cpp(134): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>UserInterface.cpp(136): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>UserInterface.cpp(136): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>UserInterface.cpp(143): warning C4995: 'strcpy': name was marked as #pragma deprecated
    16>UserInterface.cpp(143): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string.h(112) : see declaration of 'strcpy'
    16>UserInterface.cpp(576): warning C4995: 'sprintf': name was marked as #pragma deprecated
    16>UserInterface.cpp(576): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>UserInterface.cpp(577): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>UserInterface.cpp(587): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(211) : see declaration of 'fopen'
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(138): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(132) : while compiling class template member function 'CDynamicPoolEx<T>::~CDynamicPoolEx(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(269) : see reference to class template instantiation 'CDynamicPoolEx<T>' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\effectlib\EffectUpdateDecorator.h(79) : see reference to class template instantiation 'CPooledObject<NEffectUpdateDecorator::CHeaderDecorator>' being compiled
    16>f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(155): warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    16>          C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h(356) : see declaration of 'sprintf'
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(150) : while compiling class template member function 'void CDynamicPoolEx<T>::Destroy(void)'
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>          f:\core\sln\srcs\client\eterlib\../eterLib/Pool.h(134) : see reference to function template instantiation 'void CDynamicPoolEx<T>::Destroy(void)' being compiled
    16>          with
    16>          [
    16>              T=NEffectUpdateDecorator::CHeaderDecorator
    16>          ]
    16>  Generating Code...
    16>EffectData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectElementBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectElementBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectElementBaseInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectElementBaseInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectMesh.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectMesh.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectMeshInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectMeshInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectUpdateDecorator.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectUpdateDecorator.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EmitterProperty.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EmitterProperty.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FrameController.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FrameController.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleProperty.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleProperty.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleSystemData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleSystemData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleSystemInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleSystemInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SimpleLightData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SimpleLightData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SimpleLightInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SimpleLightInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Base.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Base.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Poly.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Poly.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Symbol.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Symbol.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SymTable.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SymTable.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cipher.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cipher.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CPostIt.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CPostIt.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CRC32.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CRC32.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Debug.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Debug.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>error.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>error.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileDir.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileDir.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileLoader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileLoader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>lzo.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>lzo.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MappedFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MappedFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Random.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Random.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Stl.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Stl.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>tea.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>tea.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TempFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TempFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Timer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Timer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Utils.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Utils.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>LODController.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>LODController.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Material.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Material.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Mesh.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Mesh.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Model.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Model.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceCollisionDetection.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceCollisionDetection.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceModel.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceModel.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceMotion.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceMotion.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceRender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceRender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceUpdate.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceUpdate.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Motion.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Motion.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Thing.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Thing.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ThingInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ThingInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>DXTCImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>DXTCImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Image.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Image.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TGAImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TGAImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AttributeData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AttributeData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AttributeInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AttributeInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Camera.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Camera.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CollisionData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CollisionData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ColorTransitionHelper.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ColorTransitionHelper.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Decal.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Decal.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EnvironmentMap.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EnvironmentMap.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileLoaderThread.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileLoaderThread.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpCollisionObject.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpCollisionObject.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpColor.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpColor.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpColorInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpColorInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpD3DXBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpD3DXBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpDIB.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpDIB.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpIndexBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpIndexBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpLightManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpLightManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpObjectInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpObjectInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpPixelShader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpPixelShader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpRatioInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpRatioInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpShadowTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpShadowTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexBufferDynamic.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexBufferDynamic.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexBufferStatic.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexBufferStatic.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexShader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexShader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Input.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Input.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>LensFlare.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>LensFlare.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>lineintersect_utils.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>lineintersect_utils.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MSApplication.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MSApplication.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MSWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MSWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Mutex.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Mutex.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>parser.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>parser.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PathStack.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PathStack.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ReferenceObject.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ReferenceObject.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ScreenFilter.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ScreenFilter.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SkyBox.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SkyBox.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TargaResource.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TargaResource.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Thread.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Thread.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CullingManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CullingManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpDetector.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpDetector.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpDevice.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpDevice.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpMath.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpMath.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpScreen.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpScreen.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>JpegFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>JpegFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StateManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StateManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ResourceManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ResourceManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpExpandedImageInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpExpandedImageInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpImageInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpImageInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpImageTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpImageTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpMarkInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpMarkInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpSubImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpSubImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetAddress.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetAddress.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDatagram.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDatagram.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDatagramReceiver.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDatagramReceiver.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDatagramSender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDatagramSender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDevice.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDevice.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetPacketHeaderMap.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetPacketHeaderMap.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetStream.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetStream.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpFontTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpFontTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpText.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpText.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpTextInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpTextInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextTag.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextTag.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>BlockTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>BlockTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>DibBar.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>DibBar.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextBar.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextBar.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>IME.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>IME.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextFileLoader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextFileLoader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPack.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPack.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPackCursor.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPackCursor.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPackManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPackManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPackPolicy_CSHybridCrypt.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPackPolicy_CSHybridCrypt.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGridSlotWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGridSlotWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonSlotWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonSlotWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonWindowManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonWindowManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonWindowManagerModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonWindowManagerModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphic.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphic.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicImageModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicImageModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicTextModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicTextModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicThingModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicThingModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceAttach.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceAttach.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceBattle.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceBattle.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceBlend.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceBlend.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceCollisionDetection.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceCollisionDetection.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceEvent.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceEvent.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceFly.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceFly.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceMotion.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceMotion.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceMotionEvent.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceMotionEvent.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstancePosition.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstancePosition.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceRender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceRender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceRotation.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceRotation.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceSync.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceSync.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceWeaponTrace.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceWeaponTrace.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>DungeonBlock.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>DungeonBlock.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PhysicsObject.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PhysicsObject.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceDataFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceDataFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceMotionData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceMotionData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>WeaponTrace.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>WeaponTrace.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Area.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Area.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AreaLoaderThread.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AreaLoaderThread.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AreaTerrain.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AreaTerrain.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoor.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoor.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorCharacterShadow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorCharacterShadow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorIndexBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorIndexBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorLoad.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorLoad.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorQuadtree.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorQuadtree.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorRender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorRender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorRenderHTP.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorRenderHTP.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorRenderSTP.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorRenderSTP.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorUpdate.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorUpdate.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorWater.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorWater.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapType.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapType.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapUtil.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapUtil.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MonsterAreaInfo.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MonsterAreaInfo.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Property.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Property.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PropertyLoader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PropertyLoader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PropertyManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PropertyManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SnowEnvironment.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SnowEnvironment.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SnowParticle.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SnowParticle.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TerrainDecal.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TerrainDecal.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TerrainPatch.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TerrainPatch.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TerrainQuadtree.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TerrainQuadtree.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GameEventManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GameEventManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GameType.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GameType.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GameUtil.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GameUtil.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ItemData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ItemData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ItemManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ItemManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyingData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyingData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyingInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyingInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyingObjectManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyingObjectManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyTarget.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyTarget.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyTrace.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyTrace.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundInstance2D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundInstance2D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundInstance3D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundInstance3D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundInstanceStream.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundInstanceStream.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManager2D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManager2D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManager3D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManager3D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManagerStream.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManagerStream.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Stdafx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Stdafx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Terrain.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Terrain.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextureSet.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextureSet.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonDebugModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonDebugModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonLauncher.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonLauncher.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonMarshal.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonMarshal.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonUtils.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonUtils.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>BoundaryShapeManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>BoundaryShapeManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedGrassRT.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedGrassRT.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedGrassWrapper.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedGrassWrapper.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedTreeForest.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedTreeForest.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedTreeForestDirectX8.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedTreeForestDirectX8.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedTreeWrapper.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedTreeWrapper.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>frustum.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>frustum.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>sphere.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>sphere.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>spherepack.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>spherepack.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>msvcprtd.lib(MSVCP120D.dll) : error LNK2005: "public: __thiscall std::_Container_base12::_Container_base12(void)" (??0_Container_base12@std@@QAE@XZ) already defined in Utils.obj
    16>msvcprtd.lib(MSVCP120D.dll) : error LNK2005: "public: __thiscall std::_Container_base12::~_Container_base12(void)" (??1_Container_base12@std@@QAE@XZ) already defined in Utils.obj
    16>msvcprtd.lib(MSVCP120D.dll) : error LNK2005: "public: void __thiscall std::_Container_base12::_Orphan_all(void)" (?_Orphan_all@_Container_base12@std@@QAEXXZ) already defined in Utils.obj
    16>msvcprtd.lib(MSVCP120D.dll) : error LNK2005: "public: __thiscall std::locale::id::id(unsigned int)" (??0id@locale@std@@QAE@I@Z) already defined in StdAfx.obj
    16>libcpmt.lib(ios.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(ios.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(ios.obj) : error LNK2005: "public: static void __cdecl std::ios_base::_Addstd(class std::ios_base *)" (?_Addstd@ios_base@std@@SAXPAV12@@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(ios.obj) : error LNK2005: "private: static void __cdecl std::ios_base::_Ios_base_dtor(class std::ios_base *)" (?_Ios_base_dtor@ios_base@std@@CAXPAV12@@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(locale0.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(locale0.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(locale0.obj) : error LNK2005: "void __cdecl std::_Facet_Register(class std::_Facet_base *)" (?_Facet_Register@std@@YAXPAV_Facet_base@1@@Z) already defined in msvcprtd.lib(locale0_implib.obj)
    16>libcpmt.lib(locale0.obj) : error LNK2005: "private: static class std::locale::_Locimp * __cdecl std::locale::_Getgloballocale(void)" (?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(locale0.obj) : error LNK2005: "private: static class std::locale::_Locimp * __cdecl std::locale::_Init(bool)" (?_Init@locale@std@@CAPAV_Locimp@12@_N@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(locale0.obj) : error LNK2005: "public: static void __cdecl std::_Locinfo::_Locinfo_ctor(class std::_Locinfo *,char const *)" (?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(locale0.obj) : error LNK2005: "public: static void __cdecl std::_Locinfo::_Locinfo_dtor(class std::_Locinfo *)" (?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(wcout.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(wcout.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(iosptrs.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(iosptrs.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(locale.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(locale.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xlock.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xlock.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xlock.obj) : error LNK2005: "public: __thiscall std::_Lockit::_Lockit(int)" (??0_Lockit@std@@QAE@H@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(xlock.obj) : error LNK2005: "public: __thiscall std::_Lockit::~_Lockit(void)" (??1_Lockit@std@@QAE@XZ) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(xthrow.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xthrow.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xthrow.obj) : error LNK2005: "void __cdecl std::_Xbad_alloc(void)" (?_Xbad_alloc@std@@YAXXZ) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(xthrow.obj) : error LNK2005: "void __cdecl std::_Xlength_error(char const *)" (?_Xlength_error@std@@YAXPBD@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(xthrow.obj) : error LNK2005: "void __cdecl std::_Xout_of_range(char const *)" (?_Xout_of_range@std@@YAXPBD@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>libcpmt.lib(wlocale.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(wlocale.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xlocale.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xlocale.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xdateord.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xdateord.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>  cryptlib-5.6.1MT.lib(dh2.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance
    16>EffectData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectElementBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectElementBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectElementBaseInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectElementBaseInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectMesh.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectMesh.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectMeshInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectMeshInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EffectUpdateDecorator.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EffectUpdateDecorator.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EmitterProperty.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EmitterProperty.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FrameController.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FrameController.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleProperty.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleProperty.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleSystemData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleSystemData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ParticleSystemInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ParticleSystemInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SimpleLightData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SimpleLightData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SimpleLightInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SimpleLightInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Base.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Base.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Poly.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Poly.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Symbol.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Symbol.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SymTable.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SymTable.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cipher.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cipher.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CPostIt.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CPostIt.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CRC32.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CRC32.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Debug.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Debug.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>error.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>error.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileDir.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileDir.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileLoader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileLoader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>lzo.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>lzo.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MappedFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MappedFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Random.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Random.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Stl.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Stl.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>tea.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>tea.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TempFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TempFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Timer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Timer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Utils.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Utils.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>LODController.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>LODController.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Material.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Material.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Mesh.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Mesh.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Model.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Model.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceCollisionDetection.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceCollisionDetection.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceModel.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceModel.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceMotion.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceMotion.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceRender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceRender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ModelInstanceUpdate.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ModelInstanceUpdate.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Motion.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Motion.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Thing.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Thing.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ThingInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ThingInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>DXTCImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>DXTCImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Image.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Image.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TGAImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TGAImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AttributeData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AttributeData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AttributeInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AttributeInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Camera.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Camera.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CollisionData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CollisionData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ColorTransitionHelper.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ColorTransitionHelper.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Decal.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Decal.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EnvironmentMap.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EnvironmentMap.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FileLoaderThread.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FileLoaderThread.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpCollisionObject.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpCollisionObject.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpColor.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpColor.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpColorInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpColorInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpD3DXBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpD3DXBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpDIB.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpDIB.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpIndexBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpIndexBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpLightManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpLightManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpObjectInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpObjectInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpPixelShader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpPixelShader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpRatioInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpRatioInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpShadowTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpShadowTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexBufferDynamic.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexBufferDynamic.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexBufferStatic.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexBufferStatic.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpVertexShader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpVertexShader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Input.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Input.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>LensFlare.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>LensFlare.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>lineintersect_utils.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>lineintersect_utils.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MSApplication.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MSApplication.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MSWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MSWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Mutex.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Mutex.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>parser.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>parser.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PathStack.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PathStack.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ReferenceObject.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ReferenceObject.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ScreenFilter.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ScreenFilter.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SkyBox.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SkyBox.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TargaResource.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TargaResource.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Thread.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Thread.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Util.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>CullingManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>CullingManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpDetector.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpDetector.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpDevice.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpDevice.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpMath.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpMath.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpScreen.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpScreen.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>JpegFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>JpegFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StateManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StateManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ResourceManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ResourceManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpExpandedImageInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpExpandedImageInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpImageInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpImageInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpImageTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpImageTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpMarkInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpMarkInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpSubImage.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpSubImage.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetAddress.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetAddress.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDatagram.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDatagram.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDatagramReceiver.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDatagramReceiver.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDatagramSender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDatagramSender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetDevice.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetDevice.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetPacketHeaderMap.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetPacketHeaderMap.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>NetStream.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>NetStream.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpFontTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpFontTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpText.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpText.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GrpTextInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GrpTextInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextTag.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextTag.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>BlockTexture.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>BlockTexture.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>DibBar.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>DibBar.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextBar.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextBar.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>IME.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>IME.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextFileLoader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextFileLoader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPack.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPack.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPackCursor.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPackCursor.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPackManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPackManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>EterPackPolicy_CSHybridCrypt.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>EterPackPolicy_CSHybridCrypt.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGridSlotWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGridSlotWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonSlotWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonSlotWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonWindow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonWindow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonWindowManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonWindowManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonWindowManagerModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonWindowManagerModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphic.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphic.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicImageModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicImageModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicTextModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicTextModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonGraphicThingModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonGraphicThingModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceAttach.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceAttach.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceBattle.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceBattle.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceBlend.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceBlend.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceCollisionDetection.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceCollisionDetection.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceEvent.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceEvent.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceFly.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceFly.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceMotion.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceMotion.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceMotionEvent.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceMotionEvent.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstancePosition.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstancePosition.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceRender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceRender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceRotation.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceRotation.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceSync.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceSync.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ActorInstanceWeaponTrace.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ActorInstanceWeaponTrace.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>DungeonBlock.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>DungeonBlock.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PhysicsObject.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PhysicsObject.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceDataFile.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceDataFile.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>RaceMotionData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>RaceMotionData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>WeaponTrace.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>WeaponTrace.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Area.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Area.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AreaLoaderThread.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AreaLoaderThread.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>AreaTerrain.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>AreaTerrain.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoor.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoor.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorCharacterShadow.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorCharacterShadow.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorIndexBuffer.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorIndexBuffer.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorLoad.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorLoad.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorQuadtree.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorQuadtree.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorRender.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorRender.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorRenderHTP.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorRenderHTP.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorRenderSTP.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorRenderSTP.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorUpdate.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorUpdate.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapOutdoorWater.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapOutdoorWater.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapType.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapType.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MapUtil.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MapUtil.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>MonsterAreaInfo.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>MonsterAreaInfo.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Property.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Property.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PropertyLoader.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PropertyLoader.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PropertyManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PropertyManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SnowEnvironment.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SnowEnvironment.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SnowParticle.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SnowParticle.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TerrainDecal.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TerrainDecal.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TerrainPatch.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TerrainPatch.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TerrainQuadtree.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TerrainQuadtree.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GameEventManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GameEventManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GameType.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GameType.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>GameUtil.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>GameUtil.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ItemData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ItemData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>ItemManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>ItemManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyingData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyingData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyingInstance.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyingInstance.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyingObjectManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyingObjectManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyTarget.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyTarget.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>FlyTrace.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>FlyTrace.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundBase.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundBase.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundData.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundData.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundInstance2D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundInstance2D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundInstance3D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundInstance3D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundInstanceStream.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundInstanceStream.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManager2D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManager2D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManager3D.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManager3D.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SoundManagerStream.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SoundManagerStream.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Stdafx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Stdafx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Type.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Terrain.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Terrain.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>TextureSet.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>TextureSet.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonDebugModule.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonDebugModule.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonLauncher.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonLauncher.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonMarshal.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonMarshal.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>PythonUtils.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>PythonUtils.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>Resource.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>BoundaryShapeManager.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>BoundaryShapeManager.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedGrassRT.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedGrassRT.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedGrassWrapper.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedGrassWrapper.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedTreeForest.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedTreeForest.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedTreeForestDirectX8.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedTreeForestDirectX8.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>SpeedTreeWrapper.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>SpeedTreeWrapper.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>frustum.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>frustum.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>sphere.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>sphere.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>spherepack.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>spherepack.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>StdAfx.obj : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(ios.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(ios.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(locale0.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(locale0.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(wcout.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(wcout.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(iosptrs.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(iosptrs.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(locale.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(locale.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xlock.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xlock.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xthrow.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xthrow.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(wlocale.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(wlocale.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xlocale.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xlocale.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>libcpmt.lib(xdateord.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>libcpmt.lib(xdateord.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(dh2.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(dh2.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cast.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cast.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(rc6.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(rc6.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(mars.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(mars.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(serpent.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(serpent.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(twofish.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(twofish.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(blowfish.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(blowfish.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(camellia.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(camellia.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(idea.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(idea.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(rc5.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(rc5.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(seed.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(seed.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(shacal2.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(shacal2.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(tea.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(tea.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(algparam.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(algparam.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(algparam.obj) : error LNK2005: "public: __thiscall CryptoPP::AlgorithmParameters::AlgorithmParameters(class CryptoPP::AlgorithmParameters const &)" (??0AlgorithmParameters@CryptoPP@@QAE@ABV01@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(algparam.obj) : error LNK2005: "public: __thiscall CryptoPP::AlgorithmParameters::AlgorithmParameters(void)" (??0AlgorithmParameters@CryptoPP@@QAE@XZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(tiger.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(tiger.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(ripemd.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(ripemd.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(whrlpool.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(whrlpool.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(panama.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(panama.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::SimpleKeyAgreementDomain::GenerateKeyPair(class CryptoPP::RandomNumberGenerator &,unsigned char *,unsigned char *)const " (?GenerateKeyPair@SimpleKeyAgreementDomain@CryptoPP@@UBEXAAVRandomNumberGenerator@2@PAE1@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::BufferedTransformation::Attach(class CryptoPP::BufferedTransformation *)" (?Attach@BufferedTransformation@CryptoPP@@UAEXPAV12@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::BufferedTransformation::SetRetrievalChannel(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?SetRetrievalChannel@BufferedTransformation@CryptoPP@@UAEXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: unsigned int __thiscall CryptoPP::BufferedTransformation::TransferAllTo2(class CryptoPP::BufferedTransformation &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?TransferAllTo2@BufferedTransformation@CryptoPP@@QAEIAAV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::BufferedTransformation::SkipAll(void)" (?SkipAll@BufferedTransformation@CryptoPP@@UAEXXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: unsigned int __thiscall CryptoPP::BufferedTransformation::TransferMessagesTo2(class CryptoPP::BufferedTransformation &,unsigned int &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?TransferMessagesTo2@BufferedTransformation@CryptoPP@@QAEIAAV12@AAIABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::SkipMessages(unsigned int)" (?SkipMessages@BufferedTransformation@CryptoPP@@UAEII@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::GetNextMessage(void)" (?GetNextMessage@BufferedTransformation@CryptoPP@@UAE_NXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::AnyMessages(void)const " (?AnyMessages@BufferedTransformation@CryptoPP@@UBE_NXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::NumberOfMessages(void)const " (?NumberOfMessages@BufferedTransformation@CryptoPP@@UBEIXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned __int64 __thiscall CryptoPP::BufferedTransformation::TotalBytesRetrievable(void)const " (?TotalBytesRetrievable@BufferedTransformation@CryptoPP@@UBE_KXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned __int64 __thiscall CryptoPP::BufferedTransformation::Skip(unsigned __int64)" (?Skip@BufferedTransformation@CryptoPP@@UAE_K_K@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::Peek(unsigned char *,unsigned int)const " (?Peek@BufferedTransformation@CryptoPP@@UBEIPAEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::Peek(unsigned char &)const " (?Peek@BufferedTransformation@CryptoPP@@UBEIAAE@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::Get(unsigned char *,unsigned int)" (?Get@BufferedTransformation@CryptoPP@@UAEIPAEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::Get(unsigned char &)" (?Get@BufferedTransformation@CryptoPP@@UAEIAAE@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::AnyRetrievable(void)const " (?AnyRetrievable@BufferedTransformation@CryptoPP@@UBE_NXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned __int64 __thiscall CryptoPP::BufferedTransformation::MaxRetrievable(void)const " (?MaxRetrievable@BufferedTransformation@CryptoPP@@UBE_KXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::ChannelMessageSeriesEnd(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int,bool)" (?ChannelMessageSeriesEnd@BufferedTransformation@CryptoPP@@UAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::ChannelFlush(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool,int,bool)" (?ChannelFlush@BufferedTransformation@CryptoPP@@UAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_NH1@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::ChannelPutModifiable2(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned char *,unsigned int,int,bool)" (?ChannelPutModifiable2@BufferedTransformation@CryptoPP@@UAEIABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PAEIH_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::ChannelPut2(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned char const *,unsigned int,int,bool)" (?ChannelPut2@BufferedTransformation@CryptoPP@@UAEIABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBEIH_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned char * __thiscall CryptoPP::BufferedTransformation::ChannelCreatePutSpace(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned int &)" (?ChannelCreatePutSpace@BufferedTransformation@CryptoPP@@UAEPAEABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::MessageSeriesEnd(int,bool)" (?MessageSeriesEnd@BufferedTransformation@CryptoPP@@UAE_NH_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::BufferedTransformation::Flush(bool,int,bool)" (?Flush@BufferedTransformation@CryptoPP@@UAE_N_NH0@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::BufferedTransformation::Initialize(class CryptoPP::NameValuePairs const &,int)" (?Initialize@BufferedTransformation@CryptoPP@@UAEXABVNameValuePairs@2@H@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::BufferedTransformation::GetWaitObjects(class CryptoPP::WaitObjectContainer &,class CryptoPP::CallStack const &)" (?GetWaitObjects@BufferedTransformation@CryptoPP@@UAEXAAVWaitObjectContainer@2@ABVCallStack@2@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BufferedTransformation::GetMaxWaitObjectCount(void)const " (?GetMaxWaitObjectCount@BufferedTransformation@CryptoPP@@UBEIXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::HashTransformation::TruncatedVerify(unsigned char const *,unsigned int)" (?TruncatedVerify@HashTransformation@CryptoPP@@UAE_NPBEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::RandomNumberGenerator::GenerateIntoBufferedTransformation(class CryptoPP::BufferedTransformation &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64)" (?GenerateIntoBufferedTransformation@RandomNumberGenerator@CryptoPP@@UAEXAAVBufferedTransformation@2@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_K@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::RandomNumberGenerator::DiscardBytes(unsigned int)" (?DiscardBytes@RandomNumberGenerator@CryptoPP@@UAEXI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::RandomNumberGenerator::GenerateBlock(unsigned char *,unsigned int)" (?GenerateBlock@RandomNumberGenerator@CryptoPP@@UAEXPAEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::RandomNumberGenerator::GenerateWord32(unsigned int,unsigned int)" (?GenerateWord32@RandomNumberGenerator@CryptoPP@@UAEIII@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned char __thiscall CryptoPP::RandomNumberGenerator::GenerateByte(void)" (?GenerateByte@RandomNumberGenerator@CryptoPP@@UAEEXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::RandomNumberGenerator::GenerateBit(void)" (?GenerateBit@RandomNumberGenerator@CryptoPP@@UAEIXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::StreamTransformation::ProcessLastBlock(unsigned char *,unsigned char const *,unsigned int)" (?ProcessLastBlock@StreamTransformation@CryptoPP@@UAEXPAEPBEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BlockTransformation::OptimalDataAlignment(void)const " (?OptimalDataAlignment@BlockTransformation@CryptoPP@@UBEIXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::BlockTransformation::AdvancedProcessBlocks(unsigned char const *,unsigned char const *,unsigned char *,unsigned int,unsigned int)const " (?AdvancedProcessBlocks@BlockTransformation@CryptoPP@@UBEIPBE0PAEII@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::SimpleKeyingInterface::GetNextIV(class CryptoPP::RandomNumberGenerator &,unsigned char *)" (?GetNextIV@SimpleKeyingInterface@CryptoPP@@UAEXAAVRandomNumberGenerator@2@PAE@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: void __thiscall CryptoPP::SimpleKeyingInterface::SetKeyWithIV(unsigned char const *,unsigned int,unsigned char const *,unsigned int)" (?SetKeyWithIV@SimpleKeyingInterface@CryptoPP@@QAEXPBEI0I@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::SimpleKeyingInterface::SetKey(unsigned char const *,unsigned int,class CryptoPP::NameValuePairs const &)" (?SetKey@SimpleKeyingInterface@CryptoPP@@UAEXPBEIABVNameValuePairs@2@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(cryptlib.obj) : error LNK2005: "public: __thiscall CryptoPP::Algorithm::Algorithm(bool)" (??0Algorithm@CryptoPP@@QAE@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(pch.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(pch.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(casts.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(casts.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(marss.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(marss.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(tftables.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(tftables.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(bfinit.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(bfinit.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cpu.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(cpu.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "protected: virtual unsigned int __thiscall CryptoPP::IteratedHashBase<unsigned int,class CryptoPP::HashTransformation>::HashMultipleBlocks(unsigned int const *,unsigned int)" (?HashMultipleBlocks@?$IteratedHashBase@IVHashTransformation@CryptoPP@@@CryptoPP@@MAEIPBII@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::IteratedHashBase<unsigned int,class CryptoPP::HashTransformation>::TruncatedFinal(unsigned char *,unsigned int)" (?TruncatedFinal@?$IteratedHashBase@IVHashTransformation@CryptoPP@@@CryptoPP@@UAEXPAEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::IteratedHashBase<unsigned int,class CryptoPP::HashTransformation>::Restart(void)" (?Restart@?$IteratedHashBase@IVHashTransformation@CryptoPP@@@CryptoPP@@UAEXXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual unsigned char * __thiscall CryptoPP::IteratedHashBase<unsigned int,class CryptoPP::HashTransformation>::CreateUpdateSpace(unsigned int &)" (?CreateUpdateSpace@?$IteratedHashBase@IVHashTransformation@CryptoPP@@@CryptoPP@@UAEPAEAAI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::IteratedHashBase<unsigned int,class CryptoPP::HashTransformation>::Update(unsigned char const *,unsigned int)" (?Update@?$IteratedHashBase@IVHashTransformation@CryptoPP@@@CryptoPP@@UAEXPBEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "protected: virtual unsigned int __thiscall CryptoPP::IteratedHashBase<unsigned __int64,class CryptoPP::HashTransformation>::HashMultipleBlocks(unsigned __int64 const *,unsigned int)" (?HashMultipleBlocks@?$IteratedHashBase@_KVHashTransformation@CryptoPP@@@CryptoPP@@MAEIPB_KI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::IteratedHashBase<unsigned __int64,class CryptoPP::HashTransformation>::Restart(void)" (?Restart@?$IteratedHashBase@_KVHashTransformation@CryptoPP@@@CryptoPP@@UAEXXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual unsigned char * __thiscall CryptoPP::IteratedHashBase<unsigned __int64,class CryptoPP::HashTransformation>::CreateUpdateSpace(unsigned int &)" (?CreateUpdateSpace@?$IteratedHashBase@_KVHashTransformation@CryptoPP@@@CryptoPP@@UAEPAEAAI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(iterhash.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::IteratedHashBase<unsigned __int64,class CryptoPP::HashTransformation>::Update(unsigned char const *,unsigned int)" (?Update@?$IteratedHashBase@_KVHashTransformation@CryptoPP@@@CryptoPP@@UAEXPBEI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(tigertab.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(tigertab.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(queue.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(queue.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::StringStore::CopyRangeTo2(class CryptoPP::BufferedTransformation &,unsigned __int64 &,unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)const " (?CopyRangeTo2@StringStore@CryptoPP@@UBEIAAVBufferedTransformation@2@AA_K_KABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::StringStore::TransferTo2(class CryptoPP::BufferedTransformation &,unsigned __int64 &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?TransferTo2@StringStore@CryptoPP@@UAEIAAVBufferedTransformation@2@AA_KABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "private: virtual void __thiscall CryptoPP::StringStore::StoreInitialize(class CryptoPP::NameValuePairs const &)" (?StoreInitialize@StringStore@CryptoPP@@EAEXABVNameValuePairs@2@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::Store::GetNextMessage(void)" (?GetNextMessage@Store@CryptoPP@@UAE_NXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: __thiscall CryptoPP::HashFilter::HashFilter(class CryptoPP::HashTransformation &,class CryptoPP::BufferedTransformation *,bool,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0HashFilter@CryptoPP@@QAE@AAVHashTransformation@1@PAVBufferedTransformation@1@_NHABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@3@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: __thiscall CryptoPP::StreamTransformationFilter::StreamTransformationFilter(class CryptoPP::StreamTransformation &,class CryptoPP::BufferedTransformation *,enum CryptoPP::BlockPaddingSchemeDef::BlockPaddingScheme,bool)" (??0StreamTransformationFilter@CryptoPP@@QAE@AAVStreamTransformation@1@PAVBufferedTransformation@1@W4BlockPaddingScheme@BlockPaddingSchemeDef@1@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::ArraySink::IsolatedInitialize(class CryptoPP::NameValuePairs const &)" (?IsolatedInitialize@ArraySink@CryptoPP@@UAEXABVNameValuePairs@2@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual unsigned char * __thiscall CryptoPP::ArraySink::CreatePutSpace(unsigned int &)" (?CreatePutSpace@ArraySink@CryptoPP@@UAEPAEAAI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::ArraySink::Put2(unsigned char const *,unsigned int,int,bool)" (?Put2@ArraySink@CryptoPP@@UAEIPBEIH_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::Filter::MessageSeriesEnd(int,bool)" (?MessageSeriesEnd@Filter@CryptoPP@@UAE_NH_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual bool __thiscall CryptoPP::Filter::Flush(bool,int,bool)" (?Flush@Filter@CryptoPP@@UAE_N_NH0@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::Filter::Initialize(class CryptoPP::NameValuePairs const &,int)" (?Initialize@Filter@CryptoPP@@UAEXABVNameValuePairs@2@H@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::Filter::TransferTo2(class CryptoPP::BufferedTransformation &,unsigned __int64 &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?TransferTo2@Filter@CryptoPP@@UAEIAAVBufferedTransformation@2@AA_KABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual unsigned int __thiscall CryptoPP::Filter::CopyRangeTo2(class CryptoPP::BufferedTransformation &,unsigned __int64 &,unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)const " (?CopyRangeTo2@Filter@CryptoPP@@UBEIAAVBufferedTransformation@2@AA_K_KABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual void __thiscall CryptoPP::Filter::Detach(class CryptoPP::BufferedTransformation *)" (?Detach@Filter@CryptoPP@@UAEXPAVBufferedTransformation@2@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual class CryptoPP::BufferedTransformation const * __thiscall CryptoPP::Filter::AttachedTransformation(void)const " (?AttachedTransformation@Filter@CryptoPP@@UBEPBVBufferedTransformation@2@XZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: virtual class CryptoPP::BufferedTransformation * __thiscall CryptoPP::Filter::AttachedTransformation(void)" (?AttachedTransformation@Filter@CryptoPP@@UAEPAVBufferedTransformation@2@XZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "protected: virtual class CryptoPP::BufferedTransformation * __thiscall CryptoPP::Filter::NewDefaultAttachment(void)const " (?NewDefaultAttachment@Filter@CryptoPP@@MBEPAVBufferedTransformation@2@XZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(filters.obj) : error LNK2005: "public: __thiscall CryptoPP::Filter::Filter(class CryptoPP::BufferedTransformation *)" (??0Filter@CryptoPP@@QAE@PAVBufferedTransformation@1@@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(fips140.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(fips140.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(fips140.obj) : error LNK2005: "bool __cdecl CryptoPP::FIPS_140_2_ComplianceEnabled(void)" (?FIPS_140_2_ComplianceEnabled@CryptoPP@@YA_NXZ) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2005: "void __cdecl CryptoPP::UnalignedDeallocate(void *)" (?UnalignedDeallocate@CryptoPP@@YAXPAX@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2005: "void * __cdecl CryptoPP::UnalignedAllocate(unsigned int)" (?UnalignedAllocate@CryptoPP@@YAPAXI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2005: "void __cdecl CryptoPP::AlignedDeallocate(void *)" (?AlignedDeallocate@CryptoPP@@YAXPAX@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2005: "void * __cdecl CryptoPP::AlignedAllocate(unsigned int)" (?AlignedAllocate@CryptoPP@@YAPAXI@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(misc.obj) : error LNK2005: "bool __cdecl CryptoPP::VerifyBufsEqual(unsigned char const *,unsigned char const *,unsigned int)" (?VerifyBufsEqual@CryptoPP@@YA_NPBE0I@Z) already defined in cryptopp.lib(cryptopp.dll)
    16>cryptlib-5.6.1MT.lib(mqueue.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(mqueue.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug' in AffectFlagContainer.obj
    16>cryptlib-5.6.1MT.lib(mqueue.obj) : error LNK2005: "public: void __thiscall std::_Container_base12::_Swap_all(struct std::_Container_base12 &)" (?_Swap_all@_Container_base12@std@@QAEXAAU12@@Z) already defined in msvcprtd.lib(MSVCP120D.dll)
    16>LINK : warning LNK4098: defaultlib 'msvcrt' conflicts with use of other libs; use /NODEFAULTLIB:library
    16>LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library
    16>../bin\metin2client.exe : fatal error LNK1169: one or more multiply defined symbols found
    ========== Rebuild All: 15 succeeded, 1 failed, 0 skipped ==========
    
    can someone help me ?
  5. Hy  .

    Today im try this tutorial .

    The source has been compile but i am problem with Db.

     

    START WITH TXT .

    Syerr eroor .

    YSERR: May 11 20:44:38.632510 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: May 11 20:44:39.535403 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (1, 0, 9, 0, "µ·²Ù·¯¹Ì", "Yang", 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) errno: 1054)
    SYSERR: May 11 20:44:39.535585 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (2, 0, 0, 0, "PYTHON_10302012", "English Version", 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) errno: 1054)
    SYSERR: May 11 20:44:39.535729 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (10, 0, 1, 0, "µµ+0", "Sword+0", 0, 0, 0, 2, 1, 16, 32, 0, 11, 1, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 0 ) errno: 1054)
    SYSERR: May 11 20:44:39.535901 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (11, 0, 1, 0, "µµ+1", "Sword+1", 200, 200, 0, 2, 1, 16, 32, 0, 12, 2, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 7 ) errno: 1054)
    SYSERR: May 11 20:44:39.536050 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (12, 0, 1, 0, "µµ+2", "Sword+2", 200, 200, 0, 2, 1, 16, 32, 0, 13, 3, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 14 ) errno: 1054)
    SYSERR: May 11 20:44:39.536195 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (13, 0, 1, 0, "µµ+3", "Sword+3", 200, 300, 0, 2, 1, 16, 32, 0, 14, 4, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 21 ) errno: 1054)
    SYSERR: May 11 20:44:39.536387 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (14, 0, 1, 0, "µµ+4", "Sword+4", 200, 300, 0, 2, 1, 16, 32, 0, 15, 5, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 28 ) errno: 1054)
    SYSERR: May 11 20:44:39.536521 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (15, 0, 1, 0, "µµ+5", "Sword+5", 200, 400, 0, 2, 1, 16, 32, 0, 16, 6, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 35 ) errno: 1054)
    SYSERR: May 11 20:44:39.536652 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (16, 0, 1, 0, "µµ+6", "Sword+6", 200, 500, 0, 2, 1, 16, 32, 0, 17, 7, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 42 ) errno: 1054)
    SYSERR: May 11 20:44:39.536818 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (17, 0, 1, 0, "µµ+7", "Sword+7", 200, 700, 0, 2, 1, 16, 32, 0, 18, 8, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 49 ) errno: 1054)
    SYSERR: May 11 20:44:39.536962 :: ChildLoop: AsyncSQL: query failed: Unknown column 'vnum_range' in 'field list' (query: replace into item_proto (vnum, vnum_range, type, subtype, name, locale_name, gold, shop_buy_price, weight, size, flag, wearflag, antiflag, immuneflag, refined_vnum, refine_set, magic_pct, socket_pct, addon_type, limittype0, limitvalue0, limittype1, limitvalue1, applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, value0, value1, value2, value3, value4, value5 ) values (18, 0, 1, 0, "µµ+8", "Sword+8", 200, 1000, 0, 2, 1, 16, 32, 0, 19, 9, 35, 1, 0, 1, 0, 0, 0, 7, 22, 0, 0, 0, 0, 0, 15, 19, 13, 15, 56 ) errno: 1054)
    

    Start with SQL .

    This eroor .

    SYSERR: May 11 20:57:43.927036 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: May 11 20:57:43.979634 :: InitializeItemTableSQL: Could not load item_proto. No results!
    SYSERR: May 11 20:57:43.979653 :: InitializeTables: InitializeItemTableSQL FAILED
    SYSERR: May 11 20:57:43.979666 :: Initialize: Table Initialize FAILED
    SYSERR: May 11 20
    End of pid:57:43.990464 :: pid_deinit:
    
    
    

    CH1 and GAME99 this eroor .

    SYSERR: May 11 20:46:08.4022 :: pid_init: 
    Start of pid: 1801
    
    SYSERR: May 11 20:46:09.607348 :: Boot: item table size error
    SYSERR: May 11 20:46:09.871250 :: pid_deinit: 
    End of pid
    
    
    

    Can  you help pe to solve this problem  with Database .

  6. Hy today im tested my core .

    But i am this eroor in syser .

    What is problem from receive error connecting to server .

     

    This is from CH1 , game99

    SYSERR: Apr 21 15:10:09.809759 :: pid_init:
    Start of pid: 6146
    
    SYSERR: Apr 21 15:10:10.476158 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_sg1.dat
    SYSERR: Apr 21 15:10:13.217631 :: Boot: item table size error
    SYSERR: Apr 21 15:10:13.544787 :: pid_deinit:
    End of pid
    

    DB .

    SYSERR: Apr 21 15:09:55.39278 :: pid_init:
    Start of pid: 6114
    
    SYSERR: Apr 21 15:09:55.40616 :: Start: TABLE_POSTFIX not configured use default
    SYSERR: Apr 21 15:10:13.606367 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: Apr 21 15:10:13.606886 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: Apr 21 15:10:13.606899 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: Apr 21 15:10:15.706703 :: Process: FDWATCH: peer null in event: ident 22
    SYSERR: Apr 21 15:10:17.303294 :: Process: FDWATCH: peer null in event: ident 21
    SYSERR: Apr 21 15:10:19.3295 :: Process: FDWATCH: peer null in event: ident 22
    
    
    AUTH --- 
    
    SYSERR: Apr 21 15:09:58.152719 :: pid_init:
    Start of pid: 6121
    
    SYSERR: Apr 21 15:09:58.204825 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/c
    
  7. I am problem with this convertor .

    I download this program  , i put item_proto in the program folder ,  im add this in extract.xml

    <Buildfile version="1.1">
    <!-- 
    									Metin2 Proto Archiver
    									Revision 164
    									Copyright (C) 2014-2016  *~*TeacheR*~* && oOAiRMaXOo.
    									Example File
    -->
    	<Action 
    		type="item_proto_extract" 
    		path="item_proto" 
    		OutType="TXT"
    		TxTProto="item_proto.txt"
    		TxTNames="item_names.txt" 
    	/>
    </Buildfile>
    

    Before im move extract.xml on ProtoArchiver.exe  .. but not work ...

    What is problem .

  8. Hey boys
    I found on mcppl forum this topic .
    ---------------------------------------------------------------
    Exclussive WorldOfMetin2 2014 Source Files]
    File Date : 2014
    G++ Version : G++49
    Boost Version : 1.5.3

    FREEBSD Version : 9.2

    Download : ...

    Virus Total ; Archive Is Damaged . But I Can Scanning Folder
    ...

    ----------------------------------------------------------------

     

    My question is this is real source of WOM2 ?

    Sorry I posted here but I needed some answers ..

  9. Hi .

    Im install gcc49 , i change g++ with g++49 but i am this eroor .

    compile BattleArena.cpp
    In file included from debug_allocator.h:4:0,
                     from stdafx.h:7,
                     from BattleArena.cpp:1:
    /usr/local/lib/gcc49/include/c++/cstdlib:178:10: error: expected unqualified-id before '__int128'
       inline __int128
              ^
    In file included from ../../../Extern/include/boost/limits.hpp:19:0,
                     from ../../../Extern/include/boost/functional/hash/detail/limits.hpp:16,
                     from ../../../Extern/include/boost/functional/hash/detail/hash_float.hpp:15,
                     from ../../../Extern/include/boost/functional/hash/hash.hpp:15,
                     from ../../../Extern/include/boost/functional/hash.hpp:6,
                     from ../../../Extern/include/boost/unordered/unordered_map.hpp:17,
                     from ../../../Extern/include/boost/unordered_map.hpp:16,
                     from char.h:4,
                     from BattleArena.cpp:6:
    /usr/local/lib/gcc49/include/c++/limits:1405:35: error: template argument 1 is invalid
         struct numeric_limits<__int128>
                                       ^
    /usr/local/lib/gcc49/include/c++/limits:1479:44: error: template argument 1 is invalid
         struct numeric_limits<unsigned __int128>
                                                ^
    Makefile:119: recipe for target 'OBJDIR/BattleArena.o' failed
    gmake: *** [OBJDIR/BattleArena.o] Error 1
    root@xcata:/usr/src/Server/game/src #
    
    

    What is problem ?

    GCC49 IS NOT INSTALL LIB ?

  10. This is for ban:

    For unban I guess you can work around with the ban command and make one.

    I tried the function of that topic but i am this eroor  .

    cmd_gm.cpp: In function 'void do_ban(CHARACTER*, const char*, int, int)':
    cmd_gm.cpp:4407: error: 'arg1' was not declared in this scope
    cmd_gm.cpp:4407: error: 'arg2' was not declared in this scope
    cmd_gm.cpp:4407: error: 'arg3' was not declared in this scope
    cmd_gm.cpp:4446: error: 'pmsg' was not declared in this scope
    Makefile:119: recipe for target 'OBJDIR/cmd_gm.o' failed
    gmake: *** [OBJDIR/cmd_gm.o] Error 1
    root@metin2:/usr/src/Server/game/src #
    
    
  11. ACMD(do_ban)
    {
    	char szName[CHARACTER_NAME_MAX_LEN + 1];
    	char szReason[512];
    	int iDuration;
    	
    	one_argument(two_arguments(argument,arg1,sizeof(arg1),arg2,sizeof(arg2)),arg3,sizeof(arg3));
    	
    	// Invalid syntax
    	if (!*arg1 || !*arg2 || !*arg3)
    	{
    		ch->ChatPacket(CHAT_TYPE_INFO, "Invalid Syntax, usage: <player name> <time in hours> <reason> tip: don't use spaces in the reason, use _");
    		return;
    	}
    	
    	str_to_number(iDuration,arg2);
    	
    	if (iDuration <= 0)
    	{
    		ch->ChatPacket(CHAT_TYPE_INFO, "Duration can't be 0 or minus.");
    		return;		
    	}
    	
    	LPCHARACTER tch = CHARACTER_MANAGER::instance().FindPC(szName);
    	
    	if (!tch->GetDesc())
    	{
    		ch->ChatPacket(CHAT_TYPE_INFO, "%s don't have desc", szName);
    		return;
    	}
    	  
    	if (tch == ch)
    	{
    		ch->ChatPacket(CHAT_TYPE_INFO, "What's wrong with you? Don't ban yourself");
    		return;
    	}
    	  
    	if (tch->GetGMLevel() > GM_HIGH_WIZARD)
    	{
    		ch->ChatPacket(CHAT_TYPE_INFO, "Do not ban GMs");
    		return;
    	}
    	
    	std::auto_ptr<SQLMsg> msg(DBManager::instance().DirectQuery("UPDATE account.account SET availDt = FROM_UNIXTIME(UNIX_TIMESTAMP(CURRENT_TIMESTAMP()) + %d), reason = '%s' WHERE id = %u", iDuration * 3600, szReason, tch->GetDesc()->GetAccountTable().id));
    	
    	if(msg.get() && msg->Get()->uiAffectedRows == 0 || pmsg->Get()->uiAffectedRows == (uint32_t)-1)
    	{
    		ch->ChatPacket(CHAT_TYPE_INFO,"do_ban failed : can not modify account table");
    		return;
    	}
    	
    	tch->GetDesc()->DelayedDisconnect(5);
    	  
    	sys_log(0, "%s[%u] banned %s for %d hours with reason: %s", ch->GetName(), ch->GetPlayerID(), szName, iDuration, szReason);
    	  
    	ch->ChatPacket(CHAT_TYPE_INFO, "%s has been banned for %d hours with reason: %s", szName, iDuration, szReason);	
    }
    

    Kind Regards

    Ken ~ TA

     

    I add this code but .

    cmd_gm.cpp: In function 'void do_ban(CHARACTER*, const char*, int, int)':
    cmd_gm.cpp:4407: error: 'arg1' was not declared in this scope
    cmd_gm.cpp:4407: error: 'arg2' was not declared in this scope
    cmd_gm.cpp:4407: error: 'arg3' was not declared in this scope
    cmd_gm.cpp:4446: error: 'pmsg' was not declared in this scope
    Makefile:119: recipe for target 'OBJDIR/cmd_gm.o' failed
    gmake: *** [OBJDIR/cmd_gm.o] Error 1
    root@metin2:/usr/src/Server/game/src #
    
    
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.