Is there a way to specify a parameter in the DLL is to be passed by reference rather than by value? This will enable me to write a DLL which returns more than one value.
For example:
DLL MyMath(ByVal P1 as Float, ByVal P2 as Float, ByRef P3 as Float) as Float
Where P3 = P1*P2, MyMath = P1+P2
Thanks,
Doug
For example:
DLL MyMath(ByVal P1 as Float, ByVal P2 as Float, ByRef P3 as Float) as Float
Where P3 = P1*P2, MyMath = P1+P2
Thanks,
Doug
Comment