blah blah blah is here! blah blah » Close

0
votes
1 answers

C# help on unmanaged DLL C function in c sharp

Hi all, i am working on a C DLL which takes all inputs as pointer values...unmanaged code [DllImport("Ziee_Mask.dll")] unsafe public static extern void IQ_Data_to_Spectrum(double* Spec, double* Real, double ...

0
votes
2 answers

How can I call a function which takes pointer to pointer in C# from a dll?

Hello I need to write a function that will pass 2 parameters to a dll function. The dll function is below: getADCSamplesFromAllEnabledChannels(int sampleToCapture, double **voltagePointerArray) it takes a pointer to pointer as a ...

Feedback