I am using VisualStudio.net edition for my compiler, and the application is to PocketPC. When I link recive this error.
LNK2019: unresolved external symbol WL_HMAC_SHA1 referenced in function F c:\Projects\redim\wzcsapi.lib
fatal error LNK1120: 1 unresolved external Windows Mobile 6 Professional SDK
This error in theory is because:
- Calling a function that has not been implemented
- Referencing a variable that has not been declared
- Putting code in new source files but forgetting to add those source files to the build so they don't get compiled and linked
- Calling a function from a third party library but not including the library in the link
But what library do i need to add?