| /RevoEX-2.3/build/demos/nwc24demo/src/MsgPrint/ |
| D | MsgPrint.c | 68 static void ViewFrom( NWC24MsgObj* msgObj ); 69 static void ViewTo( NWC24MsgObj* msgObj ); 70 static void ViewSubject( NWC24MsgObj* msgObj ); 71 static void ViewDate( NWC24MsgObj* msgObj ); 72 static void ViewBodyText( NWC24MsgObj* msgObj ); 73 static void ViewAttachment( NWC24MsgObj* msgObj ); 212 NWC24MsgObj msgObj; in ViewMessage() local 214 err = NWC24GetMsgObj(&msgObj, mBoxId, msgId); in ViewMessage() 233 ViewFrom(&msgObj); in ViewMessage() 236 ViewTo(&msgObj); in ViewMessage() [all …]
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgSearch/ |
| D | MsgSearch.c | 71 static void ViewMessage ( NWC24MsgObj* msgObj ); 72 static void PrintFrom ( NWC24MsgObj* msgObj ); 73 static void PrintTo ( NWC24MsgObj* msgObj ); 74 static void PrintSubject ( NWC24MsgObj* msgObj ); 75 static void PrintMsgType ( NWC24MsgObj* msgObj ); 76 static void PrintAppId ( NWC24MsgObj* msgObj ); 237 static void ViewMessage( NWC24MsgObj* msgObj ) in ViewMessage() argument 240 PrintFrom( msgObj ); in ViewMessage() 243 PrintTo( msgObj ); in ViewMessage() 246 PrintSubject( msgObj ); in ViewMessage() [all …]
|
| D | PostTestMsg.c | 64 NWC24MsgObj msgObj; in PostTestMsg() local 71 err = NWC24InitMsgObj( &msgObj, TEST_MSG_TYPE[iObj] ); in PostTestMsg() 92 err = NWC24SetMsgToId( &msgObj, uidTo ); in PostTestMsg() 100 err = NWC24SetMsgSubject( &msgObj, STR_TEST_SUBJECT[iObj], in PostTestMsg() 109 err = NWC24SetMsgText( &msgObj, STR_TEST_MSG_TEXT, in PostTestMsg() 119 err = NWC24CommitMsg( &msgObj ); in PostTestMsg()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/Letter/ |
| D | Letter.c | 96 NWC24MsgObj msgObj; in PostTestMsg() local 100 err = NWC24InitMsgObj(&msgObj, NWC24_MSGTYPE_WII_MENU); in PostTestMsg() 115 err = NWC24SetMsgToId(&msgObj, testIdTo); in PostTestMsg() 123 err = NWC24SetMsgSubject(&msgObj, TestSubject, (u32)strlen(TestSubject)); in PostTestMsg() 131 err = NWC24SetMsgText(&msgObj, (const char*)TestMsgText, (u32)sizeof(TestMsgText) - 2, in PostTestMsg() 140 err = NWC24SetMsgAttached(&msgObj, (const char*)my_letter_arc_begin, in PostTestMsg() 149 err = NWC24SetMsgAltName(&msgObj, (const u16*)TestAltName, (u32)sizeof(TestAltName) - 2); in PostTestMsg() 157 err = NWC24CommitMsg(&msgObj); in PostTestMsg()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgPost/ |
| D | MsgPost.c | 136 NWC24MsgObj msgObj; in PostTestMsg() local 139 err = NWC24InitMsgObj(&msgObj, NWC24_MSGTYPE_WII); in PostTestMsg() 147 err = NWC24SetMsgToId(&msgObj, TestIdTo); in PostTestMsg() 155 err = NWC24SetMsgSubject(&msgObj, TestSubject, (u32)strlen(TestSubject)); in PostTestMsg() 163 err = NWC24SetMsgText(&msgObj, TestMsgText, (u32)strlen(TestMsgText), in PostTestMsg() 172 err = NWC24CommitMsg(&msgObj); in PostTestMsg()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgList/ |
| D | MsgList.c | 163 NWC24MsgObj msgObj; in ListMessageBox() local 168 err = NWC24GetMsgObj(&msgObj, mBoxId, idListBuf[i]); in ListMessageBox() 175 (void)NWC24GetMsgType(&msgObj, &type); in ListMessageBox() 192 (void)NWC24GetMsgNumTo(&msgObj, &numTo); in ListMessageBox() 196 (void)NWC24ReadMsgToId(&msgObj, j, &uid); in ListMessageBox() 203 (void)NWC24GetMsgFromId(&msgObj, &uid); in ListMessageBox()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/MsgViewer/ |
| D | MsgViewerUpdate.c | 116 NWC24MsgObj msgObj; in GetMsgData() local 125 err = NWC24GetMsgObj( &msgObj, mBoxId, msgId ); in GetMsgData() 133 err = NWC24GetMsgType( &msgObj, &msgData->type ); in GetMsgData() 137 err = NWC24GetMsgNumTo( &msgObj, &msgData->numTo ); in GetMsgData() 146 err = NWC24GetMsgSubjectSize( &msgObj, &subjectSize ); in GetMsgData() 155 err = NWC24ReadMsgSubject( &msgObj, subject, subjectSize ); in GetMsgData() 172 err = NWC24GetMsgTextSize( &msgObj, &textSize ); in GetMsgData() 182 err = NWC24ReadMsgText( &msgObj, text, textSize, &charset, &encoding ); in GetMsgData() 205 err = NWC24GetMsgFromId( &msgObj, &temp ); in GetMsgData() 212 err = NWC24ReadMsgToId( &msgObj, i, &temp ); in GetMsgData() [all …]
|
| D | MsgViewer.c | 279 NWC24MsgObj msgObj; in ReadSubject() local 284 err = NWC24GetMsgObj( &msgObj, mBoxId, msgId ); in ReadSubject() 292 err = NWC24GetMsgSubjectSize( &msgObj, &subjectSize ); in ReadSubject() 305 err = NWC24ReadMsgSubject( &msgObj, subjectBuf, subjectSize ); in ReadSubject()
|
| /RevoEX-2.3/build/demos/nwc24demo/src/ChannelJump/ |
| D | ChannelJump.c | 149 NWC24MsgObj msgObj; in PostMessage() local 153 err = NWC24InitMsgObj(&msgObj, NWC24_MSGTYPE_WII_MENU); in PostMessage() 168 err = NWC24SetMsgToId(&msgObj, testIdTo); in PostMessage() 176 err = NWC24SetMsgSubject(&msgObj, MsgSubject, (u32)strlen(MsgSubject)); in PostMessage() 184 err = NWC24SetMsgText(&msgObj, (const char*)MsgText, (u32)sizeof(MsgText) - 2, in PostMessage() 196 err = NWC24SetMsgAttached(&msgObj, (const char*)Template_arc_begin, in PostMessage() 207 err = NWC24SetMsgAltName(&msgObj, (const u16*)MsgAltName, (u32)sizeof(MsgAltName) - 2); in PostMessage() 215 err = NWC24CommitMsg(&msgObj); in PostMessage()
|