Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I pass a byte parameter to a dll?
Message
From
27/02/2001 12:27:54
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
How can I pass a byte parameter to a dll?
Miscellaneous
Thread ID:
00480142
Message ID:
00480142
Views:
41
I need to pass a parameter to a dll function using an unsigned byte and am having some problems.

DECLARE INTEGER LoadToRam IN Hc11DownLoaderDll INTEGER,STRING,STRING

retval = LoadToRam(portnum,CHR(255),NULL)

I need to pass the CHR(255) and the portnum as unsigned char but Foxpro sends it as a signed char.

A VB implementation uses the following.

Private Declare Function LoadToRam Lib "Hc11DownLoaderDll.dll" _
(ByVal comPort_ As Byte, ByVal commandCode_ As Byte, _
ByRef progressBarPtr_ As Any) As Integer

command = CByte(&HFF)

comport = CByte(cboComPort.Text)

result = LoadToRam(comport, command, vbNullString)

A C++ implementation of course just does a cast to unsigned char for the character byte 0xFF.

I need a way to do it in VFP 6.0 if it is possible.
Any help is appreciated
Next
Reply
Map
View

Click here to load this message in the networking platform