I have a c++ active x dll which is built from visual studio 2005 and i need to call it from a “c” code which i has to be compiled in mingw32 compiler.
Is it possible to call a c++ active x dll from c or i have to convert the dll from activex to win32.
Please give me your suggestions.
ActiveX is COM, and COM is essentially a C API (as it is a part of Win API which itself is a C API) so it is possible., but it requires a good understanding of COM. A good starting point can be found here:
http://www.codeproject.com/Articles/13601/COM-in-plain-C