Compiling / Make is a two step process.
Step one
The compiler opens the project file and reads it's contents. The contents of this file tell the compiler the location and file names to open and convert into object code.
If you get ERRORS, There could be 2 reasons for this, the physical file is missing or the file is no longer needed.
Step two
The Linker opens all object files that were created in process one, and resolves all of the calls. If you get ERRORS, This means that a needed object was not found, a file name is missing inside of the project file or a library file that was needed could not be found.
In your case, "ReloadAllPatches" and "RegisterAllPatches" could not be found in the object code. Look inside of all of the files (*.h and *.cpp) for the values
|