I have a C++ DLL with an exported function:
extern "C" __declspec(dllexport) double* fft(double* dataReal, double* dataImag)
{
[...]
}
The function calculates the FFT of the two double arrays (real and imaginary) an returns a single double array with the real an imaginary components interleaved: { Re, Im, Re, Im, ... }
I'm not sure how to call this function in C#. What I'm doing is:
[DllImport("fft.dll")]
static extern double[] fft(double[] dataReal, double[] dataImag);
and when I test it like this:
double[] foo = fft(new double[] { 1, 2, 3, 4 }, new double[] { 0, 0, 0, 0 });
I get a MarshalDirectiveException exception:
Cannot marshal 'return value': Invalid managed/unmanaged type combination.
I'm assuming this is because C++ double* isn't quite the same as C# double[], but I'm not sure how to fix it. Any ideas?
Edit: I've changed the signatures so that I now pass some extra information:
extern "C" __declspec(dllexport) void fft(double* dataReal, double* dataImag, int length, double* output);
We always know the length of output will be 2x length
and
[DllImport("fft.dll")]
static extern void fft(double[] dataReal, double[] dataImag, int length, out double[] output);
tested like this:
double[] foo = new double[8];
fft(new double[] { 1, 2, 3, 4 }, new double[] { 0, 0, 0, 0 }, 4, out foo);
Now I'm getting an AccessViolationException rather than a MarshalDirectiveException.
double*to C#double[]because the marshaling code doesn't know how long the array is. Based on your description, I'm assuming it's twice as long as the input arrays, but I don't know how the C++ function knows how long the input arrays are. – David Yaw Feb 21 '11 at 23:14dataRealis just a pointer todouble, its size has nothing to do with the number of elements in the array, that’s the way arrays are passed as arguments in C(++). Also: we do not know whose job is to deallocate the resulting array (and how). – Mormegil Feb 21 '11 at 23:24