It still doesn't work
Here is what i did:
- converted the DLL into a LIB following the directives from Antonio.
- added the wrapper into my code
- modified the Buildce.bat file to include the lib:
echo c:\FWPPC\GPS\UTM\wdgps_ce.lib >> msvc.tmp
The resulting msvc.tmp file contains the line:
c:\FWPPC\GPS\UTM\wdgps_ce.lib
- compile and link
I get the following errors:
Gps.prg(637) : error C2065: 'LatLon_WGS84_2_LT72' : undeclared identifier
Gps.prg(671) : error C2065: 'LatLon_WGS84_2_UTM_NAD83' : undeclared identifier
I found that I probably did the DLL - LIB conversion badly as I did not specified the processor type. Then I changed the call by adding the /MACHINE:ARM parameter to it.
But I get the same result.
What did I mis ?
Thanks for any help