Searched refs:msgData (Results 1 – 2 of 2) sorted by relevance
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgViewer/ |
| D | MsgViewerUpdate.c | 51 static BOOL GetMsgData ( MsgData* msgData, NWC24MsgBoxId mBoxId, u32 msgId ); 113 static BOOL GetMsgData( MsgData* msgData, NWC24MsgBoxId mBoxId, u32 msgId ) in GetMsgData() argument 133 err = NWC24GetMsgType( &msgObj, &msgData->type ); in GetMsgData() 137 err = NWC24GetMsgNumTo( &msgObj, &msgData->numTo ); in GetMsgData() 140 if ( MAX_NUM_TO < msgData->numTo ) in GetMsgData() 142 msgData->numTo = MAX_NUM_TO; in GetMsgData() 166 (void)memcpy( msgData->subject, subject, subjectSize ); in GetMsgData() 167 msgData->subject[subjectSize] = '\0'; in GetMsgData() 194 (void)memcpy( msgData->text, text, textSize ); in GetMsgData() 195 msgData->text[textSize] = '\0'; in GetMsgData() [all …]
|
| D | MsgViewerRender.c | 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() [all …]
|