Packe Deine "Unterunktionen" in eine extra
Unit, und binde Diese in das DllProjekt ein....
DLL:
Delphi-Quellcode:
library mydll;
uses
System.SysUtils,
System.Classes,
dllFuncs in 'dllFuncs.pas';
{$R *.res}
procedure dllfunc(const i : integer); stdcall;
begin
Unterfunktion1(i);
end;
exports
dllfunc;
begin
end.
Unit:
Delphi-Quellcode:
unit dllFuncs;
interface
procedure Unterfunktion1(
const i : integer);
implementation
procedure Unterfunktion1(
const i : integer);
begin
end;
end.