C#: CT-API, USB
-
Hallo,
hat jmd vllt ein kleines Beispiel parat, wie ich die CTAPI.dll mit einem USB-Gerät verwenden kann?
Danke
undefined
-
hat sich erledigt, problem gelöst
-
Wie?
-
Mr. N schrieb:
Wie?
Für den Cyberjack von Reiner-SCT:
using System; using System.Windows.Forms; using System.Runtime.InteropServices; namespace fHB { /// <summary> /// /// </summary> public class ctapi { [DllImport("ctsct32.dll")] public static extern int CT_init(uint ctn, uint pn); [DllImport("ctsct32.dll")] public static extern int CT_close(uint ctn); [DllImport("ctsct32.dll")] public static extern int CT_data(uint ctn, uint dad, uint sad, uint lenc, uint command, uint lenr, uint response); // public ctapi(uint x, uint y) { if(CT_init(x, y) != 0) { //Fehler } else { //OK } } } }
ist nat. noch nicht fertig implementiert, aber den Rest kann man ja in der CT-API-Spezifikation lesen.