You wrote: >Why when I create an variable as UInt16 nReg; //like a global >variable >inside of a Main.c archive and when use extern nReg; / to use of >this form: ...
You declared extern nReg; incorrectly. It should be: extern UInt16 nReg; Josh -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
