LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Looking for LabWindows CVI Drivers for Netcom Systems Smartbits

Could anyone please point me to where or whom has a LabWindows CVI Driver for Netcom System's Smartbits. I did notice that the drivers for LabView were written, but have not found for CVI.
0 Kudos
Message 1 of 3
(3,250 Views)
When you load NETCOM, you should have the following path created: c:\Program Files\Netcom Systems\SmartLib\CommLib which should have a file called smbw32bc.lib in it. Include it in your project and it should have all the drivers you need in it. We've been using this file for many years now.
0 Kudos
Message 2 of 3
(3,250 Views)
I am having a problem trying to get this to work. DO you have a typo in the file name? I have the file smbw32vc.lib. My project will not run. It has a problem with the definition of a 64 bit integer. I know that it works with CVI 7.0 bit I would like to get it to work with version 6.0.

The error occurs in the file ettypes.h. The file contains the following:

#if defined WIN32
#define int64 __int64
#define uint64 unsigned __int64
#endif

#ifndef int64
#define int64 long long
#define uint64 unsigned long long
#endif

typedef union tagINT64_T {

struct {
unsigned long low;
long high;
} i64;
int64 int64_t; /* error HERE found id expected } */
} INT64_T;

Any help would be great.
0 Kudos
Message 3 of 3
(3,250 Views)