On 2010-07-12 18:48, adam chance wrote:
When I Build my Mod (Debug), I get this error:
2>.\Debug_episodic/Server.dll : fatal error LNK1120: 1 unresolved externals
What do I do?
You have a linker error. It means that you are using a function defined
in a header file, but it cannot find the declaration anywhere, for
whatever reason. This is very basic C++, look it up and learn to figure
out linking errors.
You need to find the missing function(s) (usually written to the next
line(s) in the output) and make sure it is properly linked against. This
is often caused by declaring linking incorrectly, or forgetting to
include an external library. Anyway, this can be caused by all sorts of
things.
We need the name of missing symbol/external (function or variable
written to the output), otherwise we cannot help you on this list.
Good luck!
Jonas 'Sortie' Termansen
_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please
visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders