Index: io_tedax.c =================================================================== --- io_tedax.c (revision 30897) +++ io_tedax.c (revision 30898) @@ -177,7 +177,7 @@ PCB_ACT_FAIL(LoadtedaxFrom); } -pcb_action_t tedax_action_list[] = { +rnd_action_t tedax_action_list[] = { {"LoadTedaxFrom", pcb_act_LoadtedaxFrom, pcb_acth_LoadtedaxFrom, pcb_acts_LoadtedaxFrom}, {"SaveTedax", pcb_act_Savetedax, pcb_acth_Savetedax, pcb_acts_Savetedax} }; @@ -247,7 +247,7 @@ void pplg_uninit_io_tedax(void) { - pcb_remove_actions_by_cookie(tedax_cookie); + rnd_remove_actions_by_cookie(tedax_cookie); tedax_etest_uninit(); PCB_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_tedax); pcb_tedax_net_uninit(); Index: tnetlist.c =================================================================== --- tnetlist.c (revision 30897) +++ tnetlist.c (revision 30898) @@ -79,8 +79,8 @@ htsp_init(&fps, strhash, strkeyeq); htsp_init(&pinnames, strhash, strkeyeq); - pcb_actionva(&PCB->hidlib, "Netlist", "Freeze", NULL); - pcb_actionva(&PCB->hidlib, "Netlist", "Clear", NULL); + rnd_actionva(&PCB->hidlib, "Netlist", "Freeze", NULL); + rnd_actionva(&PCB->hidlib, "Netlist", "Clear", NULL); while((argc = tedax_getline(fn, line, sizeof(line), argv, sizeof(argv)/sizeof(argv[0]))) >= 0) { if ((argc == 3) && (strcmp(argv[0], "footprint") == 0)) { @@ -94,7 +94,7 @@ else if ((argc == 4) && (strcmp(argv[0], "conn") == 0)) { char id[512]; sprintf(id, "%s-%s", argv[2], argv[3]); - pcb_actionva(&PCB->hidlib, "Netlist", "Add", argv[1], id, NULL); + rnd_actionva(&PCB->hidlib, "Netlist", "Add", argv[1], id, NULL); } else if ((argc == 4) && (strcmp(argv[0], "pinname") == 0)) { char id[512]; @@ -110,11 +110,11 @@ break; } - pcb_actionva(&PCB->hidlib, "Netlist", "Sort", NULL); - pcb_actionva(&PCB->hidlib, "Netlist", "Thaw", NULL); + rnd_actionva(&PCB->hidlib, "Netlist", "Sort", NULL); + rnd_actionva(&PCB->hidlib, "Netlist", "Thaw", NULL); if (import_fp) { - pcb_actionva(&PCB->hidlib, "ElementList", "start", NULL); + rnd_actionva(&PCB->hidlib, "ElementList", "start", NULL); for (e = htsp_first(&fps); e; e = htsp_next(&fps, e)) { fp_t *fp = e->value; @@ -122,7 +122,7 @@ if (fp->footprint == NULL) pcb_message(PCB_MSG_ERROR, "tedax: not importing refdes=%s: no footprint specified\n", e->key); else - pcb_actionva(&PCB->hidlib, "ElementList", "Need", null_empty(e->key), null_empty(fp->footprint), null_empty(fp->value), NULL); + rnd_actionva(&PCB->hidlib, "ElementList", "Need", null_empty(e->key), null_empty(fp->footprint), null_empty(fp->value), NULL); free(e->key); free(fp->value); @@ -129,7 +129,7 @@ free(fp->footprint); free(fp); } - pcb_actionva(&PCB->hidlib, "ElementList", "Done", NULL); + rnd_actionva(&PCB->hidlib, "ElementList", "Done", NULL); } for (e = htsp_first(&pinnames); e; e = htsp_next(&pinnames, e)) { @@ -138,7 +138,7 @@ if (pin != NULL) { *pin = '\0'; pin++; - pcb_actionva(&PCB->hidlib, "ChangePinName", refdes, pin, name, NULL); + rnd_actionva(&PCB->hidlib, "ChangePinName", refdes, pin, name, NULL); } free(e->key); free(e->value);