Hi all,
I'm writing an application on PB5 where I'd like to use Maxim IC's 1wire bus and their USB converter, but i can't seem to link to the library. The error I get is "The procedure entry point TMREADDEFAULTPORT could not be located in the dynamic link librabray IBFS32.DLL"
My syntax looks like this:
DECLARE FUNCTION TMReadDefaultPort SDECL LIB "IBFS32.DLL" (PortNum AS INTEGER, PortType AS INTEGER) AS INTEGER
LOCAL RetValue%, PortNum%, PortType%
RetValue% = TMReadDefaultPort(PortNum%, PortType%)
I've tried the three different call types and none worked. Just to verify I used a 3rd party program to verify the function call in IBFS32.DLL and its correct.
I'm writing an application on PB5 where I'd like to use Maxim IC's 1wire bus and their USB converter, but i can't seem to link to the library. The error I get is "The procedure entry point TMREADDEFAULTPORT could not be located in the dynamic link librabray IBFS32.DLL"
My syntax looks like this:
DECLARE FUNCTION TMReadDefaultPort SDECL LIB "IBFS32.DLL" (PortNum AS INTEGER, PortType AS INTEGER) AS INTEGER
LOCAL RetValue%, PortNum%, PortType%
RetValue% = TMReadDefaultPort(PortNum%, PortType%)
I've tried the three different call types and none worked. Just to verify I used a 3rd party program to verify the function call in IBFS32.DLL and its correct.
Comment