python 에서 Delphi 가 쓴 Dll 코드 예제 호출

2934 단어 delphipythondll
우선 Delphi 단원 파일 의 기본 구 조 를 보십시오.

unit Unit1;  //      
interface   //       ,                
uses     //          
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; 

type     //            ,   ,          、   
TForm1 = class(TForm) 
private   //            
  { Private declarations }
public   //            
  { Public declarations }
end; 
  
var      //            
Form1: TForm1; 

implementation //         

{$R *.dfm}
  
end. 
Delphi 단원 은 다음 과 같 습 니 다(hello.dll 출력):

unit hellofun;

interface

function getint():integer;stdcall;
function sayhello(var sname:PAnsiChar):PAnsiChar;stdcall;
implementation

function getint():integer;stdcall;
begin
 result:=888;
end;
function sayhello(var sname:PAnsiChar):PAnsiChar;stdcall;
begin
 sname:='ok!';
 result:='hello,garfield !';
end;

end.

library hello;

{ Important note about DLL memory management: ShareMem must be the
 first unit in your library's USES clause AND your project's (select
 Project-View Source) USES clause if your DLL exports any procedures or
 functions that pass strings as parameters or function results. This
 applies to all strings passed to and from your DLL--even those that
 are nested in records and classes. ShareMem is the interface unit to
 the BORLNDMM.DLL shared memory manager, which must be deployed along
 with your DLL. To avoid using BORLNDMM.DLL, pass string information
 using PChar or ShortString parameters. }

uses
 System.SysUtils,
 System.Classes,
 hellofun in 'hellofun.pas';

{$R *.res}

exports
 getint,
 sayhello;

begin
end.
python 에서 다음 과 같이 호출 합 니 다:

import ctypes

def main():
  dll=ctypes.windll.LoadLibrary("hello.dll")
  ri=dll.getint()
  print(ri)

  s=ctypes.c_char_p()
  rs=ctypes.c_char_p()
  rs=dll.sayhello(ctypes.byref(s))
  print(s)
  print(ctypes.c_char_p(rs))

if __name__ == '__main__':
  main()
Python 을 실행 합 니 다.출력 은 다음 과 같 습 니 다.

>>> 
888
c_char_p(b'ok!')
c_char_p(b'hello,garfield !')
>>> 
자,python 으로 하여 금 일부 기능 을 Delphi 에서 호출 하 게 할 수도 있 고,Delphi 로 일부 기능 을 Python 에서 호출 할 수도 있 습 니 다.
위의 프로그램 은 DelphiXE 2 및 Python 3.2 에서 디 버 깅 을 통 과 했 습 니 다.
총결산
이상 은 python 이 Delphi 를 호출 하여 쓴 Dll 코드 예제 에 관 한 모든 내용 입 니 다.도움 이 되 기 를 바 랍 니 다.관심 이 있 는 친 구 는 본 사이트 의 다른 관련 주 제 를 계속 참고 할 수 있 습 니 다.부족 한 점 이 있 으 면 댓 글로 지적 해 주 십시오.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기