python 에서 Delphi 가 쓴 Dll 코드 예제 호출
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 코드 예제 에 관 한 모든 내용 입 니 다.도움 이 되 기 를 바 랍 니 다.관심 이 있 는 친 구 는 본 사이트 의 다른 관련 주 제 를 계속 참고 할 수 있 습 니 다.부족 한 점 이 있 으 면 댓 글로 지적 해 주 십시오.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Delphi 10.3.3 IDE 글꼴 및 글꼴 크기 수정Delphi는 Windows 플랫폼에서 유명한 빠른 응용 프로그램 개발 도구(Rapid Application Development, 약칭 RAD)입니다.그것의 전신은 바로 DOS 시대에 성행한'Borland Turb...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.