LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

I can't seem to compile this include....

Here is an include file used with GoldMine. I am having trouble starting on line 125.It generates lots and lots of errors.

struct GMWnv;
typedef GMWnv *HGMNV;

Here they have defined a struct GMWnv that is nothing. Is this a C++ vs a C thing, or is this include file just screwed up? How can I modify this to make it compile under CVI 5.5?
0 Kudos
Message 1 of 2
(3,108 Views)
Hi,

It appears as though this may be a C/C++ related issue. If you comment those two lines out and replace it with:

typedef struct GMWnv *HGMNV;

It doesn't complain anymore. Try this out and see if it helps out your application!

Jeremy L.
National Instruments
Jeremy L.
National Instruments
0 Kudos
Message 2 of 2
(3,108 Views)