> From: Marcelo > > I have a code with the operator +\. Does anybody know what it is > for? Here, > It's the code, maybe can help us. > #define DB_DATE_TIME_START (DB_ID_START +\ > DB_ID_SIZE) This a really a basic C question, not a Palm question. There is no +\ operator. That is a +, followed by the line-continuation character, \. If you want to #define something that doesn't fit on a single line, use \ to continue on the next line. So, this #defines DB_DATE_TIME_START as (DB_ID_START + DB_ID_SIZE). -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
