程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> Delphi XE10在 Android下調用靜態庫a文件,

Delphi XE10在 Android下調用靜態庫a文件,

編輯:Delphi

Delphi XE10在 Android下調用靜態庫a文件,


Delphi Seatle can link Delphi project with Static library files(*.a):

 

1.at Delphi IDE, Add the "*.a" file Path to Library Path:

    a. Tools Menu

    b.Options 

    c.Delphi Options -> Library -> Selected platform "Android"

    d.Library path -> Add the path of *.a file

    e.OK

2.Here is an unit I made: utLibTest.pas is linked with libtest.a

unit utLibTest;

{$link libtest.a}

interface

const
  libproj='libtest.a';

(* procedure prototypes *)

//將lon,2Pi周期內轉換到-pi到pi之間
function adjlon(lon:Double):double;cdecl;

//將度分秒字符串轉換成弧度,iss為字符串,rss為結束字符指針
function dmstor(iss:PByte; var rss:PByte):double;cdecl;


implementation


function adjlon; external libproj;
function dmstor; external libproj;

end.

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved