Pure C library project wizard ?
-
hi
Not seen that old versions, so don't know.Depends on what you mean by pure ?
If you make a c++ lib, and only uses functions its C like but still might have the c++ name mangling and if you need to use from other c program, you might need to use
extern "C" { int printf(const char *format,...); }
to make it work if "only" a compiler for the using app.
( as far as i know)