signature of _inp and _outp in msvcrt.dll
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I think it nonsense if some application can access parallel port without additional driver but I must provide own driver. After attach an "dll viewer" to "portmon", I found exported function called _inp and _outp inside msvcrt.dll or msvcr80.dll. It looks like same with _inp and _outp function on turbo c++ compiler. When I try to call with
[DllImport("msvcrt.dll",EntryPoint = "_outp")]
public static void OutP(int address, int value);there's no exception occurs, but my application always shutted down with errors. Is someone there know what signature of "_outp" is? or know whats wrong with my program? (my program just have two textboxes to input address and value and one button to execute)
No one can prevent me to learn something