- 论坛徽章:
- 1
|
static void cp_msg_list( struct DOUBLE_LIST_IDX* list_idx, struct MSG_INFO* header)
{
int ret;
int count = 0;
struct MSG_INFO* pMsg_tmp;
struct MSG_INFO* pMsg_node;
struct MSG_INFO* pMsg_next;
struct MSG_INFO* pMsg_header = NULL;
Dprintf("#%s#%d\n", __FUNCTION__, __LINE__);
if(list_idx == NULL || header == NULL) {
return;
}
pMsg_next = header;
while(pMsg_next != NULL) {
pMsg_node = found_bakup_msg_node();
if(pMsg_node != NULL) {
Dprintf("#%s#%d\n", __FUNCTION__, __LINE__);
ret = cp_msg_node_data(pMsg_node, pMsg_next);
Dprintf("#%s#%d\n", __FUNCTION__, __LINE__);
if(ret == TRUE) {
//add_node_to_list()
}
}
count ++;
pMsg_next = pMsg_next->next;
}
pMsg_tmp->next = NULL;
return ;
} |
|