When I go to build macroquest.exe, I get this error.
Code: Select all
Compiling resources...
C:\macroquest\eqlib\EQLib.rc(10) : fatal error RC1015: cannot open include file 'afxres.h'.
Error executing rc.exe.
macroquest.exe - 1 error(s), 0 warning(s)Code: Select all
Oddly enough, VC++ adds afxres.h to resource files even when you aren't using an MFC project, and yet the file may only be installed if you install MFC. This perticular file isn't actually required, so to fix the error you can edit the .rc file in notepad and replace both occurances of "afxres.h" with "winres.h" (note that there should be two of them, and you need to change both). Code: Select all
Compiling...
EQLib_Commands.cpp
C:\macroquest\eqlib\EQLib_Commands.cpp(28) : fatal error C1083: Cannot open include file: 'direct.h': No such file or directory
EQLib_Hooks.cpp
C:\macroquest\eqlib\EQLib_Hooks.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_Interp.cpp
C:\macroquest\eqlib\EQLib_Interp.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_MacroCommands.cpp
C:\macroquest\eqlib\EQLib_MacroCommands.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_MacroParser.cpp
C:\macroquest\eqlib\EQLib_MacroParser.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_Main.cpp
C:\macroquest\eqlib\EQLib_Main.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_MemChecks.cpp
C:\macroquest\eqlib\EQLib_MemChecks.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_Mouse.cpp
C:\macroquest\eqlib\EQLib_Mouse.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_TelnetServer.cpp
C:\macroquest\eqlib\EQLib_TelnetServer.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_UserVars.cpp
C:\macroquest\eqlib\EQLib_UserVars.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
EQLib_Utilities.cpp
C:\macroquest\eqlib\EQLib_Utilities.cpp(26) : fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory
stdafx.cpp
C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\windows.h(159) : fatal error C1083: Cannot open include file: 'excpt.h': No such file or directory
Generating Code...
Error executing cl.exe.
macroquest.exe - 12 error(s), 0 warning(s)
