Search found 1 match

by takeseven
Sat May 01, 2021 1:20 pm
Forum: InpOut32 (x64)
Topic: inpoutx64 not working on win 10
Replies: 7
Views: 26791

Re: inpoutx64 not working on win 10

Since inpoutx64.dll and inpout32.dll are no valid assembly or COM components you can't import them using the project references. You need to import the functions of the dll in code like [DllImport("inpout32.dll", EntryPoint = "Inp32")] private static extern int Input(int adress);...