Hey guys I am calling the GDAit DLL that can be found here Link .
I want to call the following external function from Powerbuilder 12.5.2 Build 5006.
Function prototype from the documentaion:
long __stdcall TransGeogPt(LPSTR psGridFile, long lDirection, double dLatitude, double
dLongitude, double* pdLatNew, double* pdLongNew, double* pdLatAcc, double*
pdLongAcc)
The following code is my PowerBuilder External call to the function.
FUNCTION long TransGeogPt(string psGridFile, long lDirection, double dLatitude, double dLongitude, ref double pdLatNew, ref double pdLongNew, ref double pdLatAcc, ref double pdLongAcc) LIBRARY "GDAit.dll" ALIAS FOR TransGeogPt
I just want to make sure I am defining the external function call correctly.
any comments would be greatly appreciated.
I want to call the following external function from Powerbuilder 12.5.2 Build 5006.
Function prototype from the documentaion:
long __stdcall TransGeogPt(LPSTR psGridFile, long lDirection, double dLatitude, double
dLongitude, double* pdLatNew, double* pdLongNew, double* pdLatAcc, double*
pdLongAcc)
The following code is my PowerBuilder External call to the function.
FUNCTION long TransGeogPt(string psGridFile, long lDirection, double dLatitude, double dLongitude, ref double pdLatNew, ref double pdLongNew, ref double pdLatAcc, ref double pdLongAcc) LIBRARY "GDAit.dll" ALIAS FOR TransGeogPt
I just want to make sure I am defining the external function call correctly.
any comments would be greatly appreciated.