Installed the SDK from lavish site, added include path, and library path for vs80.
Opened ISXEQ.sln in VS2005 Express. Set ISXEQ as startup project then tried to build. 32 errors and 100 some warnings later I obviously missed a step.
No rush but since autobot is being worked on for port over, and most of the plugins I use are already over seemed like a good time to start learning.
Here are a few examples of my mess so far if it helps.
Code: Select all
Compiling...
MQ2Windows.cpp
c:\program files\isxdk\include\FileList.h(27) : warning C4996: 'sprintf' was declared deprecated
C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
c:\program files\isxdk\include\FileList.h(28) : warning C4996: 'strcpy' was declared deprecated
C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
c:\program files\isxdk\include\FileList.h(41) : warning C4996: 'strcpy' was declared deprecatedCode: Select all
C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
.\MQ2Spawns.cpp(576) : error C3867: 'EQPlayerHook::EQPlayer_Detour': function call missing argument list; use '&EQPlayerHook::EQPlayer_Detour' to create a pointer to member
.\MQ2Spawns.cpp(576) : error C3867: 'EQPlayerHook::EQPlayer_Trampoline': function call missing argument list; use '&EQPlayerHook::EQPlayer_Trampoline' to create a pointer to member
.\MQ2Spawns.cpp(577) : error C3867: 'EQPlayerHook::dEQPlayer_Detour': function call missing argument list; use '&EQPlayerHook::dEQPlayer_Detour' to create a pointer to member
.\MQ2Spawns.cpp(577) : error C3867: 'EQPlayerHook::dEQPlayer_Trampoline': function call missing argument list; use '&EQPlayerHook::dEQPlayer_Trampoline' to create a pointer to member
.\MQ2Spawns.cpp(578) : error C3867: 'EQItemListHook::EQItemList_Detour': function call missing argument list; use '&EQItemListHook::EQItemList_Detour' to create a pointer to member
.\MQ2Spawns.cpp(578) : error C3867: 'EQItemListHook::EQItemList_Trampoline': function call missing argument list; use '&EQItemListHook::EQItemList_Trampoline' to create a pointer to member
.\MQ2Spawns.cpp(579) : error C3867: 'EQItemListHook::dEQItemList_Detour': function call missing argument list; use '&EQItemListHook::dEQItemList_Detour' to create a pointer to member
.\MQ2Spawns.cpp(579) : error C3867: 'EQItemListHook::dEQItemList_Trampoline': function call missing argument list; use '&EQItemListHook::dEQItemList_Trampoline' to create a pointer to member
.\MQ2Spawns.cpp(580) : error C3867: 'EQPlayerHook::SetNameSpriteState_Detour': function call missing argument list; use '&EQPlayerHook::SetNameSpriteState_Detour' to create a pointer to member
.\MQ2Spawns.cpp(580) : error C3867: 'EQPlayerHook::SetNameSpriteState_Trampoline': function call missing argument list; use '&EQPlayerHook::SetNameSpriteState_Trampoline' to create a pointer to member
.\MQ2Spawns.cpp(581) : error C3867: 'EQPlayerHook::SetNameSpriteTint_Detour': function call missing argument list; use '&EQPlayerHook::SetNameSpriteTint_Detour' to create a pointer to member
.\MQ2Spawns.cpp(581) : error C3867: 'EQPlayerHook::SetNameSpriteTint_Trampoline': function call missing argument list; use '&EQPlayerHook::SetNameSpriteTint_Trampoline' to create a pointer to member


