Home
last modified time | relevance | path

Searched refs:mBoxId (Results 1 – 7 of 7) sorted by relevance

/RevoEX-2.3/build/demos/nwc24demo/include/
DMsgViewer.h135 void GetMsgIdList ( NWC24MsgBoxId mBoxId );
136 void ReleaseMsgIdList ( NWC24MsgBoxId mBoxId );
137 BOOL ReadSubject ( char* buf, u32 size, NWC24MsgBoxId mBoxId, u32 msgId );
138 void GetListedSubjects ( NWC24MsgBoxId mBoxId );
139 void ReleaseListedSubjects( NWC24MsgBoxId mBoxId );
/RevoEX-2.3/build/demos/nwc24demo/src/MsgList/
DMsgList.c59 void ListMessageBox( NWC24MsgBoxId mBoxId );
131 void ListMessageBox( NWC24MsgBoxId mBoxId ) in ListMessageBox() argument
139 err = NWC24GetNumMsgs(mBoxId, &numMsgs); in ListMessageBox()
154 err = NWC24GetMsgIdList(mBoxId, idListBuf, numMsgs); in ListMessageBox()
168 err = NWC24GetMsgObj(&msgObj, mBoxId, idListBuf[i]); in ListMessageBox()
187 if ( mBoxId == NWC24_SEND_BOX ) in ListMessageBox()
213 if ( mBoxId == NWC24_SEND_BOX ) in ListMessageBox()
/RevoEX-2.3/build/demos/nwc24demo/src/MsgViewer/
DMsgViewer.c223 void GetMsgIdList( NWC24MsgBoxId mBoxId ) in GetMsgIdList() argument
227 MsgBoxType mbType = (mBoxId == NWC24_RECV_BOX) ? MB_TYPE_RECV : MB_TYPE_SEND; in GetMsgIdList()
229 err = NWC24GetNumMsgs( mBoxId, &g_numMsgs[mbType] ); in GetMsgIdList()
240 err = NWC24GetMsgIdList( mBoxId, g_idListBuf[mbType], g_numMsgs[mbType] ); in GetMsgIdList()
253 void ReleaseMsgIdList( NWC24MsgBoxId mBoxId ) in ReleaseMsgIdList() argument
255 MsgBoxType mbType = (mBoxId == NWC24_RECV_BOX) ? MB_TYPE_RECV : MB_TYPE_SEND; in ReleaseMsgIdList()
276 BOOL ReadSubject( char* buf, u32 size, NWC24MsgBoxId mBoxId, u32 msgId ) in ReadSubject() argument
284 err = NWC24GetMsgObj( &msgObj, mBoxId, msgId ); in ReadSubject()
330 void GetListedSubjects( NWC24MsgBoxId mBoxId ) in GetListedSubjects() argument
333 MsgBoxType mbType = (mBoxId == NWC24_RECV_BOX) ? MB_TYPE_RECV : MB_TYPE_SEND; in GetListedSubjects()
[all …]
DMsgViewerUpdate.c51 static BOOL GetMsgData ( MsgData* msgData, NWC24MsgBoxId mBoxId, u32 msgId );
54 static void CreateMessage ( NWC24MsgBoxId mBoxId );
113 static BOOL GetMsgData( MsgData* msgData, NWC24MsgBoxId mBoxId, u32 msgId ) in GetMsgData() argument
123 MsgBoxType mbType = (mBoxId == NWC24_RECV_BOX) ? MB_TYPE_RECV : MB_TYPE_SEND; in GetMsgData()
125 err = NWC24GetMsgObj( &msgObj, mBoxId, msgId ); in GetMsgData()
293 static void CreateMessage( NWC24MsgBoxId mBoxId ) in CreateMessage() argument
308 if ( mBoxId == NWC24_SEND_BOX ) in CreateMessage()
672 … NWC24MsgBoxId mBoxId = (g_selectedMenu == MB_MENU_RECV_BOX) ? NWC24_RECV_BOX : NWC24_SEND_BOX; in UpdateDeleteMsg() local
675 err = NWC24DeleteMsg( mBoxId, g_idListBuf[mbType][ g_idxSelectedId[mbType] ] ); in UpdateDeleteMsg()
685 ReleaseMsgIdList( mBoxId ); in UpdateDeleteMsg()
[all …]
DMsgViewerRender.c80 static void RenderMsgList ( NWC24MsgBoxId mBoxId );
110 … NWC24MsgBoxId mBoxId = (g_selectedMenu == MB_MENU_RECV_BOX) ? NWC24_RECV_BOX : NWC24_SEND_BOX; in Render() local
113 RenderMsgList( mBoxId ); in Render()
186 static void RenderMsgList( NWC24MsgBoxId mBoxId ) in RenderMsgList() argument
191 MsgBoxType mbType = (mBoxId == NWC24_RECV_BOX) ? MB_TYPE_RECV : MB_TYPE_SEND; in RenderMsgList()
199 (mBoxId == NWC24_RECV_BOX) ? "Receive" : "Send" ); in RenderMsgList()
/RevoEX-2.3/build/demos/nwc24demo/src/MsgPrint/
DMsgPrint.c63 static void GetIdList( NWC24MsgBoxId mBoxId );
66 static void ViewMessage( NWC24MsgBoxId mBoxId, u32 msgId );
156 void GetIdList( NWC24MsgBoxId mBoxId ) in GetIdList() argument
161 err = NWC24GetNumMsgs(mBoxId, &NumMsgs); in GetIdList()
171 if ( mBoxId == NWC24_RECV_BOX ) in GetIdList()
184 err = NWC24GetMsgIdList(mBoxId, IdListBuf, NumMsgs); in GetIdList()
209 void ViewMessage( NWC24MsgBoxId mBoxId, u32 msgId ) in ViewMessage() argument
214 err = NWC24GetMsgObj(&msgObj, mBoxId, msgId); in ViewMessage()
222 if ( mBoxId == NWC24_RECV_BOX ) in ViewMessage()
/RevoEX-2.3/include/revolution/nwc24/
DNWC24Msg.h391 NWC24Err NWC24SetSearchCondMsgBox ( NWC24MsgBoxId mBoxId );