Re: [GnuWin32-Users] GSL and VB6

2005-06-25 Thread Charles Calvert
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

[GnuWin32-Users] GSL and VB6

2005-06-25 Thread Rui Fernandes
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