I want to use the NIST Biometrics Image Software(NBIS) library in Visual Studio. I use NBIS rel_5.0.0 and Visual Studio 2013. (http://www.nist.gov/itl/iad/ig/nbis.cfm)
I compiled the original c code with MinGW, and now I have .a libraries, and .h files. Can I use the functions from the .a libraries without header files in vc++?
Is this the best way to do it? (also I put the .a files to Linker/Input/Additional Dependencies)
extern "C" { int __cdecl function(...
The original NBIS library contains a lot of header and code files, but I can not use them directly in Visual Studio, because there are a lot of header file which are not used by windows, that is why I had to compile it with MinGW.