吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 452|回复: 3
收起左侧

[求助] 这样写有副作用吗?

[复制链接]
冥界3大法王 发表于 2024-11-27 13:59
本帖最后由 冥界3大法王 于 2024-11-27 14:06 编辑

[Delphi] 纯文本查看 复制代码

library Test1;

uses
   System.SysUtils,
  System.Classes,
  Unit16 in 'Unit16.pas' {Form16};

procedure ShowForm; stdcall;
begin
  Form16 := TForm16.Create(nil);
  Form16.Show;
end;

  {$R *.res}

exports
  ShowForm;

begin
end.





[Delphi] 纯文本查看 复制代码

unit Unit16;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  Vcl.StdCtrls;

type
  TForm16 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form16: TForm16;

implementation

{$R *.dfm}

procedure ShowForm stdcall; external 'Test1.dll'

procedure TForm16.Button1Click(Sender: TObject);
begin
  ShowForm;
end;

end.





这样写有副作用吗?

好像 没啥事发生。
和他们

https://segmentfault.com/a/1190000003705140

https://www.cnblogs.com/Mckk/p/5272648.html

https://blog.csdn.net/Yoryky/article/details/40864873

的比,有啥缺点?
image.png

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
Xavier1 + 1 + 1 热心回复!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

潇潇暮雨寒 发表于 2024-11-27 14:11
gossipxe 发表于 2024-11-27 14:10
问题不大,虽然我看不太懂!~~~~~~看下第27行呢~

第27行有什么问题呢
pujiepianzi 发表于 2024-11-27 16:14
 楼主| 冥界3大法王 发表于 2024-11-27 21:43
以上代码在D7上测试有点问题:
===============
下面的测试OK的
[Delphi] 纯文本查看 复制代码
Delphi7中编译成功的:
=====================这是带界面的DLL部分(Project1.dpr)
library Project1;
uses
  SysUtils,
  Classes,
  Unit1 in 'Unit1.pas' {Form1};

{$R *.res}
function ShowDllForm:TForm1;stdcall;
begin
  Result := TForm1.Create(nil);
  Result.Show;
end;

  {$R *.res}
exports
  ShowDllForm;

begin
end.
==============上面是调用DLL的主界面部分:====================
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);

  private
    { Private declarations }
  public

  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

function ShowDllForm:TForm1;external 'Project1.dll'

procedure TForm1.Button1Click(Sender: TObject);
begin
   ShowDllForm;
end;

end.
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-28 11:41

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表