jdoe
jdoe

Reputation: 29

Cannot open include file: 'visa.h'

I am working in a C++ project that uses the IVI Foundation and VISA dependencies. However, since moving over to Windows 10, I can't find where to install those onto my machine, to the point where I am wondering if they exist for windows 10. Do they exist? Where can I find them.

Upvotes: 0

Views: 1890

Answers (1)

chay
chay

Reputation: 1

The visa.h header file (and other files that you might need to include) can be found at either of the following two paths for 64-bit Windows: C:\Program Files (x86)\IVI Foundation\VISA\WinNT\include

C:\Program Files\IVI Foundation\VISA\Win64\include

For 32-bit Windows, the path will be:

C:\Program Files\IVI Foundation\VISA\WinNT\include

Upvotes: 0

Related Questions