So ich habe mir das Tut usw mal angeschaut und noch nen bisschen gegoogelt und habe mal einige versuche gestartet..aber leider erfolgslos. Poste hier mal den Quelltext einer kleinen Test
Unit evtl habt ihr ein paar vorschläge warum das nicht geht. Bin ja nicht so der fiteste im Programmieren. Hoffe deshalb auf weitere gute Lösungsansätze.
Delphi-Quellcode:
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-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
type TPortOut =
procedure(Port:Word;Data:Byte);
stdcall;
var PortOut: TPortOut;
Handle: THandle;
procedure TForm1.Button1Click(Sender: TObject);
begin
Handle := LoadLibrary(PChar(ExtractFilePath(ParamStr(0))+'
io.dll'));
if Handle <> 0
then begin
@PortOut := GetProcAdress(
Handle, '
PortOut');
if @PortOut <>
nil then begin
PortOut($378,255);
end;
FreeLibrary(
Handle);
end;
end.
Hoffe habe das jetzt so halbwegs verstanden
Danke für antworten
Alles ist relativ..