09-05-2007 11:14 AM
09-06-2007 02:28 AM
Hi Aldart,
is it possible to post you project in an attachment? If you do not want to share your entire project, try to strip it down to the problem...
09-06-2007 05:10 AM
09-06-2007 06:10 AM
09-06-2007 07:11 AM
#ifndef __DAB_Table_H__
#define __DAB_Table_H__
int Table1[48][5]=....
int Table2[48][5]=....
....
....
09-10-2007 02:29 AM
The CVI linker does not support multiply defined symbols. This happen when you include a header file that contain declarations and the header files is included in several source files. To avoid this, you should include the header only once and then declare the variables as externals in the other files.