Hallo,
ich habe ja nun angefnagen mit der Doku, also wollte ich anfangen zu prüfen, kommt eine Verbindung zu stande, aber ich komme bereits dort auf Probleme
Entweder hab ich etwas falsch gemacht oder verstehe nichts von C im zusammenhang mit Delphi.
Folgedes, die
DLL die mit C erstellt ist
Zitat:
NoMangle long DLL_IMPORT_EXPORT csp2Init(long nComPort);
Nun hab ich die
DLL im Windows Verzeichniss, da von dort andere dlls wie kernel usw noch geladen werden.
Ich habe unterhalb von public und Private eine Procedure weil mir nichts anderes bewusst ist als externe angegeben sieht so aus
procedure csp2Init(nComPort: LongInt); external 'Csp2.dll'
in einer procedure hab ich nun
csp2Init(1);
da LongInt ein Integer erwartet laut Doku sollte es so gehen
Zitat:
// try to initialize COM1…
If (csp2Init(COM1) == STATUS_OK)
{
// we can use COM1 to talk to a CSP2 device…
}
else
{
// COM1 is not available
}
nun wenn ich ausführe kommt eine
Exception vom Type EConvertError mit dem Inhalt
Zitat:
Format '%p' ungültig oder nicht kompatibel mit Argument.
ich habe long in LongInt gemacht da PLong nich existiert meine Quelle war diese
http://www.herculina.de/dllusage.htm
Bedanke mich schon im Vorraus