At 13:37 2002-12-18 -0800, you wrote:
re: function call. I do have all the functions inside
the same file (main.c)... right next to each other.

static void MainFormInit(FormPtr /*frmP*/){
...
}

static void DrawColumn2 (void *table, Int16 row, Int16
column, RectangleType *bounds) {
...
}
Are these functions defined after the place in the file at which they are used? If so, you can either move their definitions above the use, or you can declare prototypes for these above the use, but leave the definitions where they are.

--
Ben Combee <[EMAIL PROTECTED]>
CodeWarrior for Palm OS technical lead
Palm OS programming help @ www.palmoswerks.com

--
For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Reply via email to