Lines Matching refs:msgObj
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()
239 ViewSubject(&msgObj); in ViewMessage()
242 ViewDate(&msgObj); in ViewMessage()
245 ViewBodyText(&msgObj); in ViewMessage()
249 ViewAttachment(&msgObj); in ViewMessage()
257 void ViewFrom( NWC24MsgObj* msgObj ) in ViewFrom() argument
262 err = NWC24GetMsgType(msgObj, &type); in ViewFrom()
278 err = NWC24GetMsgFromId(msgObj, &uid); in ViewFrom()
292 err = NWC24ReadMsgFromAddr(msgObj, addrStr, NWC24MSG_MAX_ADDRSTR); in ViewFrom()
311 void ViewTo( NWC24MsgObj* msgObj ) in ViewTo() argument
318 err = NWC24GetMsgType(msgObj, &type); in ViewTo()
325 err = NWC24GetMsgNumTo(msgObj, &numTo); in ViewTo()
343 err = NWC24ReadMsgToId(msgObj, i, &uid); in ViewTo()
364 err = NWC24ReadMsgToAddr(msgObj, i, addrStr, NWC24MSG_MAX_ADDRSTR); in ViewTo()
388 void ViewSubject( NWC24MsgObj* msgObj ) in ViewSubject() argument
395 err = NWC24GetMsgSubjectSize(msgObj, &bufSize); in ViewSubject()
403 err = NWC24ReadMsgSubject(msgObj, buffer, bufSize); in ViewSubject()
437 void ViewDate( NWC24MsgObj* msgObj ) in ViewDate() argument
442 err = NWC24GetMsgDate(msgObj, &cTime); in ViewDate()
458 void ViewBodyText( NWC24MsgObj* msgObj ) in ViewBodyText() argument
467 err = NWC24GetMsgTextSize(msgObj, &bufSize); in ViewBodyText()
475 err = NWC24ReadMsgText(msgObj, buffer, bufSize, &charset, &encoding); in ViewBodyText()
500 void ViewAttachment( NWC24MsgObj* msgObj ) in ViewAttachment() argument
509 err = NWC24GetMsgNumAttached(msgObj, &numAttach); in ViewAttachment()
518 err = NWC24GetMsgAttachedSize(msgObj, j, &bufSize); in ViewAttachment()
526 err = NWC24ReadMsgAttached(msgObj, j, buffer, bufSize); in ViewAttachment()
535 err = NWC24GetMsgAttachedType(msgObj, j, &fileType); in ViewAttachment()