Lines Matching refs:msgData
78 static void PrintFrom ( s16 x, s16 y, MsgData* msgData );
79 static void PrintTo ( s16 x, s16 y, MsgData* msgData );
80 static void PrintSubject ( s16 x, s16 y, MsgData* msgData );
81 static void PrintBodyText ( s16 x, s16 y, MsgData* msgData );
464 static void PrintFrom( s16 x, s16 y, MsgData* msgData ) in PrintFrom() argument
466 (void)DEMORFPrintf( x, y, 0, "%s", msgData->from ); in PrintFrom()
478 static void PrintTo( s16 x, s16 y, MsgData* msgData ) in PrintTo() argument
482 for ( i = 0; i < msgData->numTo; ++i ) in PrintTo()
484 x += DEMORFPrintf( x, y, 0, "%s", msgData->to[i] ); in PrintTo()
485 if ( i < msgData->numTo - 1 ) in PrintTo()
502 static void PrintSubject( s16 x, s16 y, MsgData* msgData ) in PrintSubject() argument
504 char* pt = msgData->subject; in PrintSubject()
527 static void PrintBodyText( s16 x, s16 y, MsgData* msgData ) in PrintBodyText() argument
529 char* pt = msgData->text; in PrintBodyText()