I have looked after, without luck, a free C/C++ API for Windows that can be used in a project I am about to start. There are libraries for Java and C# but the fact is there is no one for C/C++. I need an API that can be integrated in a vs project and we cannot use libraries that run in servers ( as CGI scripts or whatever ). Does anyone know this type of API?

link|improve this question

50% accept rate
feedback

1 Answer

if you want to generate QRcodes have a look at libqrencode it works with cygwin on windows (not sure about VS).

If you want to decode QRcodes have a look at zxing

link|improve this answer
Thanks, I want to generate QRCodes. Anyway, I knew libqrebcode, but it would take some effort to make it work with VS ( which we use for GUI ). Do you know how portable this code is, i.e., if it uses UNIX based APIs. – zlogdan Aug 5 '10 at 18:47
the buildfile works on cygwin and some of the tests/examples use sql or libpng, don't know if anyone has made a vs build yet – Nikolaus Gradwohl Aug 5 '10 at 19:03
It looks like it will configure and build just fine with MinGW and MSYS as long as you have SDL and PNG. I have PNG but not SDL so I didn't pursue the build past that point. Other than that, the sources look like a dozen C files, so it may make more sense to just attempt to build them directly in VS. There's no reason why they would need to be too Unix dependent inside, and the project might welcome a patch if they are. – RBerteig Aug 5 '10 at 21:06
feedback

protected by Will Apr 14 '11 at 18:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.