LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

How do I override a CVIFUNC?

Some programmer has chosen to use common variable names as obscure CVIFUNCs and placed these in .H files. How can I override these obscure functions to enable the use of common variable names in our programs? When some .H file just assigns some obscure define, I can use #undef and then proceed. What can I use when it's a function?
0 Kudos
Message 1 of 2
(3,487 Views)
There is no way that I know of to undefine or rename a function other than removing it's prototype. If the functions are truly obscure and you aren't using them you could always just comment out the prototypes, but my recommendation would be to just change your variable names.

Regards,
Ryan K.
0 Kudos
Message 2 of 2
(3,487 Views)