using function from dll (from Borland C Builder)

  • Thread starter Thread starter Furer Ramon
  • Start date Start date
F

Furer Ramon

I need to call the function mul3 in a dll:

extern "C" unsigned __declspec(dllexport) mul3(unsigned npts, const double *
src, double * dst);

from vb.net

how can i do this?

Greets

Ramon
 
Furer Ramon said:
extern "C" unsigned __declspec(dllexport) mul3(unsigned npts, const double
* src, double * dst);

from vb.net

how can i do this?


Take a look at 'DllImportAttribute' and 'Declare' in the .NET documentation.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top