At 02:42 PM 6/25/2005 , Rui Fernandes wrote:
I keep trying to use GSL's dlls with VB6. I'm declaring some test
functions like this
Public Declare Function gsl_acosh Lib "libgsl.dll" (ByVal x As Double)
but it gives the error: "Bad DLL calling convention" ( error 49 ) when I
call it like
Dim
Hi,
I keep trying to use GSL's dlls with VB6. I'm
declaring some test functions like this
Public Declare Function gsl_acosh Lib "libgsl.dll"
(ByVal x As Double)
but it gives the error: "Bad DLL calling
convention" ( error 49 ) when I call it like
Dim a As Doublea = gsl_acosh(0.2)
Do