01-05-2011 05:24 PM
pretty simple question here, hope it is ok to ask: how do i debug (step through) .h include header file.. have been cut/pasting code from header file into my main .c code otherwise it is not going into header file when i step through the code
thanks for your time
01-05-2011 05:57 PM
What do intend with "step through header file"? A include file should include only definitions and declarations, not actual code. It is processed by the compiler before the first line of code is executed.
An additional useful option CVI offers is the preprocessing of the include files, described in this CVI tip.