Lines Matching refs:msgData
91 static void PrintFrom ( s16 x, s16 y, MsgData* msgData );
92 static void PrintTo ( s16 x, s16 y, MsgData* msgData );
93 static void PrintSubject ( s16 x, s16 y, MsgData* msgData );
94 static void PrintBodyText ( s16 x, s16 y, MsgData* msgData );
566 static void PrintFrom( s16 x, s16 y, MsgData* msgData ) in PrintFrom() argument
568 (void)DEMORFPrintf( x, y, 0, "%s", msgData->from ); in PrintFrom()
580 static void PrintTo( s16 x, s16 y, MsgData* msgData ) in PrintTo() argument
584 for ( i = 0; i < msgData->numTo; ++i ) in PrintTo()
586 x += DEMORFPrintf( x, y, 0, "%s", msgData->to[i] ); in PrintTo()
587 if ( i < msgData->numTo - 1 ) in PrintTo()
604 static void PrintSubject( s16 x, s16 y, MsgData* msgData ) in PrintSubject() argument
606 char* pt = msgData->subject; in PrintSubject()
629 static void PrintBodyText( s16 x, s16 y, MsgData* msgData ) in PrintBodyText() argument
631 char* pt = msgData->text; in PrintBodyText()