07-25-2014, 06:42 AM
To export static class or non-class functions also can be used this. But such functions can be used only in QM.
Macro Macro2345
Macro Macro2345
Macro Macro2345
//Put this before a non-class function declaration and definition to export the function with __cdecl calling convention. It is the easiest way, don't need a .def file. Using Microsoft Visual C++.
#define EXPORTC extern "C" __declspec(dllexport)
namespace Math
{
,class MathFuncs
,{
,,public:
,,// Returns a + b
,,static double Add(double a, double b);
,,static double Sub(double a, double b);
,};
,double MathFuncs::Add(double a, double b) { return a+b; }
,double MathFuncs::Sub(double a, double b) { return a-b; }
,const int mathFunctions[]=
,{
,,(int)MathFuncs::Add,
,,(int)MathFuncs::Sub,
,};
EXPORTC
const int* Math_GetFunctions() { return mathFunctions; }