S
shapper
Hello,
I have a DLL and a C/C++ header as follows:
#include <stdio.h>
#include <windows.h>
#define FUNC_DLL __declspec(dllimport)
FUNC_DLL int WINAPI FA(int iSize, double *pdSignal, double dSmooth,
double dPhase, double *pdFilter);
FUNC_DLL int WINAPI FATR(double dSeries, double dSmooth, double
dPhase, double *pdOutput, int iDestroy, int *piSeriesID);
I would like to use these functions in a C# class library.
(A side note: would this be different on Net 2.0 or Net 3.0?)
How can I do this?
Thank You,
Miguel
I have a DLL and a C/C++ header as follows:
#include <stdio.h>
#include <windows.h>
#define FUNC_DLL __declspec(dllimport)
FUNC_DLL int WINAPI FA(int iSize, double *pdSignal, double dSmooth,
double dPhase, double *pdFilter);
FUNC_DLL int WINAPI FATR(double dSeries, double dSmooth, double
dPhase, double *pdOutput, int iDestroy, int *piSeriesID);
I would like to use these functions in a C# class library.
(A side note: would this be different on Net 2.0 or Net 3.0?)
How can I do this?
Thank You,
Miguel