??? 01/11/08 14:42 Read: times |
#149313 - Wrong? Responding to: ???'s previous message |
Juan Carlos said:
I meant moving or putting the variables in the .h header where they belong. No - the "variables" don't "belong" in the header file. What you need to ensure is, again: One way to do this ("Erik's way") is to put everything in the header, with a conditional-compilation flag to determine whether declarations or definitions are produced; Another way ("my way") is to have only declarations in headers, and only definitions in .c files. |