PDA

View Full Version : Problem about dll



triperzz
8th February 2008, 05:18
im trying to access .dll files created from delphi prog. to my qt app and dlls created from qt to delphi vise versa is that possible?

if yes how??

triperzz
8th February 2008, 06:28
this is a delphi code save as dll...



Library Project1;

uses
Forms,
dialogs,
unit1 in 'unit1.pas' {Form1};

{$R *.res}

{begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
}

procedure viewdelphi;
begin
showmessage('Delphi');
end;

exports viewdelphi;
end.


could somebody help me convert this code to QT specially the export [function] part..