Searched refs:msgData (Results 1 – 2 of 2) sorted by relevance
| /RevoEX-3.1/build/demos/nwc24demo/src/MsgViewer/ |
| D | MsgViewerRender.c | 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() [all …]
|
| D | MsgViewerUpdate.c | 44 static BOOL GetMsgData ( MsgData* msgData, NWC24MsgBoxId mBoxId, u32 msgId ); 90 static BOOL GetMsgData( MsgData* msgData, NWC24MsgBoxId mBoxId, u32 msgId ) in GetMsgData() argument 110 err = NWC24GetMsgType( &msgObj, &msgData->type ); in GetMsgData() 114 err = NWC24GetMsgNumTo( &msgObj, &msgData->numTo ); in GetMsgData() 117 if ( MAX_NUM_TO < msgData->numTo ) in GetMsgData() 119 msgData->numTo = MAX_NUM_TO; in GetMsgData() 144 (void)memcpy( msgData->subject, subject, subjectSize ); in GetMsgData() 145 msgData->subject[subjectSize] = '\0'; in GetMsgData() 171 (void)memcpy( msgData->text, text, textSize ); in GetMsgData() 172 msgData->text[textSize] = '\0'; in GetMsgData() [all …]
|