1 | initial version |
unresolved external symbol
means that You're not linking with required library.
If you DID explicitly set up linking with all the necessary libraries, but linking errors still show, you might be mixing up 64/32 bit libraries and application.
I.e. make sure that all library includes point to 64 bit version of libraries if you are building 64 bit application
2 | No.2 Revision |
unresolved external symbol
means that You're not linking with required library.
If you DID explicitly set up linking with all the necessary libraries, but linking errors still show, you might be mixing up 64/32 bit libraries and application.
I.e. make sure that all library includes point to 64 bit version of libraries if you are building 64 bit application
You can also get help from here