From 8cf3b097169b7726d799ac9b7e464996c3349cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Tue, 17 Aug 2004 20:05:21 +0000 Subject: [PATCH] Not sure about Object, Long on 32 bits arch is ok git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1810 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- bindings/hamlibvb.bas.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bindings/hamlibvb.bas.in b/bindings/hamlibvb.bas.in index 1067b5ea2..73a1f1e74 100644 --- a/bindings/hamlibvb.bas.in +++ b/bindings/hamlibvb.bas.in @@ -75,28 +75,28 @@ Declare Function rig_set_debug Lib "hamlib@ABI_VERSION@.dll" (ByVal debug_level Declare Function rig_init Lib "hamlib@ABI_VERSION@.dll" (ByVal rig_model As Long) _ - As Object -Declare Function rig_open Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object) _ As Long -Declare Function rig_close Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object) _ +Declare Function rig_open Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long) _ As Long -Declare Function rig_cleanup Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object) _ +Declare Function rig_close Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long) _ + As Long +Declare Function rig_cleanup Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long) _ As Long -Declare Function rig_set_freq Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object, ByVal vfo as Long, ByVal freq As Double) _ +Declare Function rig_set_freq Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long, ByVal vfo as Long, ByVal freq As Double) _ As Long -Declare Function rig_get_freq Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object, ByVal vfo as Long, freq As Double) _ +Declare Function rig_get_freq Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long, ByVal vfo as Long, ByRef freq As Double) _ As Long -Declare Function rig_set_mode Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object, ByVal vfo as Long, ByVal mode As RMode_t, ByVal width As Long) _ +Declare Function rig_set_mode Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long, ByVal vfo as Long, ByVal mode As RMode_t, ByVal width As Long) _ As Long -Declare Function rig_get_mode Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object, ByVal vfo as Long, mode As RMode_t, width As Long) _ +Declare Function rig_get_mode Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long, ByVal vfo as Long, ByRef mode As RMode_t, ByRef width As Long) _ As Long -Declare Function rig_set_vfo Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object, ByVal vfo as Long) _ +Declare Function rig_set_vfo Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long, ByVal vfo as Long) _ As Long -Declare Function rig_get_vfo Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Object, vfop as Long) _ +Declare Function rig_get_vfo Lib "hamlib@ABI_VERSION@.dll" (ByVal RIGptr As Long, ByRef vfop as Long) _ As Long