#75621 - patroclus02 - Tue Mar 14, 2006 7:53 pm
Hello,
I would like to split up my code into several c++ source files.
Ok, what I've done is to take some functions out to a another .c file, without writing any .h file for it, and not including the new .c file in my main unit, as I get multiple reference to its functions then.
when I compile, it works fine but I get a
warning: implicit declaration of function 'checkTouch'
in my main file...
what is the right way of doing this?
Thank you
I would like to split up my code into several c++ source files.
Ok, what I've done is to take some functions out to a another .c file, without writing any .h file for it, and not including the new .c file in my main unit, as I get multiple reference to its functions then.
when I compile, it works fine but I get a
warning: implicit declaration of function 'checkTouch'
in my main file...
what is the right way of doing this?
Thank you