Index: io_eagle.c =================================================================== --- io_eagle.c (revision 30897) +++ io_eagle.c (revision 30898) @@ -58,7 +58,7 @@ void pplg_uninit_io_eagle(void) { /* Runs once when the plugin is unloaded. TODO: free plugin-globals here. */ - pcb_remove_actions_by_cookie(eagle_cookie); + rnd_remove_actions_by_cookie(eagle_cookie); PCB_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_xml); PCB_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_bin); PCB_HOOK_UNREGISTER(pcb_plug_io_t, pcb_plug_io_chain, &io_eagle_dru); Index: read.c =================================================================== --- read.c (revision 30897) +++ read.c (revision 30898) @@ -1305,10 +1305,10 @@ net = eagle_get_attrs(st, PARENT(subtree), "name", NULL); if (net != NULL && net[0] == '-' && net[1] == '\0') { /* pcb-rnd doesn't like it when Eagle uses '-' for GND*/ - pcb_actionva(&st->pcb->hidlib, "Netlist", "Add", "GND", conn, NULL); + rnd_actionva(&st->pcb->hidlib, "Netlist", "Add", "GND", conn, NULL); pcb_message(PCB_MSG_WARNING, "Substituted contactref net \"GND\" instead of original invalid '-'\n"); } else { - pcb_actionva(&st->pcb->hidlib, "Netlist", "Add", net, conn, NULL); + rnd_actionva(&st->pcb->hidlib, "Netlist", "Add", net, conn, NULL); } return 0; } @@ -1327,8 +1327,8 @@ {NULL, NULL} }; - pcb_actionva(&st->pcb->hidlib, "Netlist", "Freeze", NULL); - pcb_actionva(&st->pcb->hidlib, "Netlist", "Clear", NULL); + rnd_actionva(&st->pcb->hidlib, "Netlist", "Freeze", NULL); + rnd_actionva(&st->pcb->hidlib, "Netlist", "Clear", NULL); for(n = CHILDREN(subtree); n != NULL; n = NEXT(n)) { if (STRCMP(NODENAME(n), "signal") == 0) { @@ -1341,8 +1341,8 @@ } } - pcb_actionva(&st->pcb->hidlib, "Netlist", "Sort", NULL); - pcb_actionva(&st->pcb->hidlib, "Netlist", "Thaw", NULL); + rnd_actionva(&st->pcb->hidlib, "Netlist", "Sort", NULL); + rnd_actionva(&st->pcb->hidlib, "Netlist", "Thaw", NULL); return 0; }