Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling DLL from QM
#6
To export static class or non-class functions also can be used this. But such functions can be used only in QM.
Macro Macro2345
Code:
Copy      Help
//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; }
Macro Macro2345
Code:
Copy      Help
dll- "my.dll"
,int*Math_GetFunctions
,double'Math_Add double'a double'b
,double'Math_Sub double'a double'b

int+* mathFunctions
if !mathFunctions
,mathFunctions=Math_GetFunctions
,&Math_Add=mathFunctions[0]
,&Math_Sub=mathFunctions[1]

out Math_Add(5.7 2)
out Math_Sub(5.7 2)


Messages In This Thread

Forum Jump:


Users browsing this thread: 3 Guest(s)