The library KeyCapture_Config.lib is using MFC GUI classes (CWnd, CWinApp, etc), but the application you're linking it into is a console application (see the /SUBSYSTEM:CONSOLE option in your linker command line). This won't work. You should create a new MFC GUI application project and add the library to that project.
Edit: I've just checked the link in your comment: http://dynamicnetservices.com/~will/academic/textinput/keycapture/ and it seems that KeyCapture_Config is actually an MFC dialog application that uses the KeyCapture DLL. If you want It may be possible to use KeyCapture in a console application you should link by linking directly against KeyCapture.lib.
