Listing 3: Ermittlung von existierenden Applications im System. struct MinList *appList; struct ApplicationNode *appNode; if((appList = GetApplicationList())) { for(appNode = (struct ApplicationNode *) appList->mlh_Head; appNode->node.mln_Succ; appNode = (struct ApplicationNode *) appNode->node.mln_Succ) { IDOS->Printf(ã id: %ld %s\n", appNode->appID, appNode->name); } FreeApplicationList(appList); }