Drew A
September 5th, 2001, 10:18 AM
I am having trouble with this one RAPI call to my CE device. The call is CeRapiInvoke from the rapi.dll I keep getting invalid parameter returned when I try to use this call. My Declare is as follows:
[Declare Function CeRapiInvoke Lib "rapi.dll" ( _
ByVal pDllPath As String, _
ByVal pFunctionName As String, _
ByVal cbInput As Long, _
ByVal pInput As Long, _
ByVal pcbOutput As Long, _
ByVal ppOutput As Long, _
ByVal ppIRAPIStream As Long, _
ByVal dwReserved As Long) As Long]
I believe the error is with the ppOutput argument of the function. Thanks in advance for any help.
[Declare Function CeRapiInvoke Lib "rapi.dll" ( _
ByVal pDllPath As String, _
ByVal pFunctionName As String, _
ByVal cbInput As Long, _
ByVal pInput As Long, _
ByVal pcbOutput As Long, _
ByVal ppOutput As Long, _
ByVal ppIRAPIStream As Long, _
ByVal dwReserved As Long) As Long]
I believe the error is with the ppOutput argument of the function. Thanks in advance for any help.