Remember this: "unresolved external symbol" means "you mentioned a symbol but didn't tell the linker where to find it".
So either you simply wrote something completely bogus, or you forgot to link the library containing the symbol you referenced or you linked the libraries in the wrong order (yes, link order matters (depending on platform/linker)).