i'm trying to compile a simple Microsoft's example that uses the WimgApi, already installed Windows 7 AIK and Visual Studio 2012 Ultimate.
I've copied the example from here, created a new C++ Console project & setted up the project include/library directories, and pasted the example's code into the project's main.cpp; but, for some reason, when i try to compile the project, it throws me those errors:
error LNK2019: unresolved external symbol _WIMCreateFile@24 referenced in function _wmain
error LNK2019: unresolved external symbol _WIMCloseHandle@4 referenced in function _wmain
error LNK2019: unresolved external symbol _WIMSetTemporaryPath@8 referenced in function _wmain
error LNK2019: unresolved external symbol _WIMCaptureImage@12 referenced in function _wmain
error LNK2019: unresolved external symbol _WIMRegisterMessageCallback@12 referenced in function _wmain
error LNK2019: unresolved external symbol _WIMUnregisterMessageCallback@8 referenced in function _wmain
error LNK1120: 6 unresolved external symbols
What can i do? i've searched for WimgApi related help/examples but there is no much info about it.