LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

can't find "conio.h" file

I just started using CVI. First issue is that i can't find "conio.h" file on disk. I mention that at installation i choosed "Microsoft visual C++" as "default compiler compatibility mode"
0 Kudos
Message 1 of 3
(5,147 Views)
LabWindows CVI is an ANSI C compiler. Conio.h is not part of ANSI C so it isn't provided with CVI. You'll need to use IO functions in stdio.h (etc.) instead of those in conio.h.
Conio.h is provided with MSVC++. Specifying MSVC++ as "default compiler compatibility mode" doesn't mean that you can use VC++ code within CVI. It means that your DLLs will support VC++ calling conventions.
Message 2 of 3
(5,147 Views)
OK. Thanks.
0 Kudos
Message 3 of 3
(5,147 Views)