/* Move to next entry */
theInit->init_index += 1;
while (appInitTable[theInit->init_index].init)
{
/* Call init function */
appInitTable[theInit->init_index].init();
theInit->id = appInitTable[theInit->init_index].message_id;
if (theInit->id)
return;
/* Move to next entry */
theInit->init_index += 1;
}