Index: lht_conf.h =================================================================== --- lht_conf.h (revision 30944) +++ lht_conf.h (revision 30945) @@ -6,10 +6,10 @@ typedef struct { const struct { const struct { - CFT_STRING aux_pcb_pattern; /* [obsolete] file name pattern to use when generating the .pcb backup */ - CFT_BOOLEAN omit_font; /* [dangerous] do not save the font subtree in board files */ - CFT_BOOLEAN omit_config; /* [dangerous] do not save the config subtree in board files */ - CFT_BOOLEAN omit_styles; /* do not save the routing styles subtree in board files */ + RND_CFT_STRING aux_pcb_pattern; /* [obsolete] file name pattern to use when generating the .pcb backup */ + RND_CFT_BOOLEAN omit_font; /* [dangerous] do not save the font subtree in board files */ + RND_CFT_BOOLEAN omit_config; /* [dangerous] do not save the config subtree in board files */ + RND_CFT_BOOLEAN omit_styles; /* do not save the routing styles subtree in board files */ } io_lihata; } plugins; } conf_io_lihata_t; Index: read.c =================================================================== --- read.c (revision 30944) +++ read.c (revision 30945) @@ -65,7 +65,7 @@ vtp0_t post_ids, post_thermal_old, post_thermal_heavy; static int rdver; unsigned long warned, old_model_warned; -static conf_role_t cfg_dest; +static rnd_conf_role_t cfg_dest; static pcb_data_t DUMMY_BUFFER_SUBC; @@ -2340,7 +2340,7 @@ return 0; } -int io_lihata_parse_pcb(pcb_plug_io_t *ctx, pcb_board_t *Ptr, const char *Filename, conf_role_t settings_dest) +int io_lihata_parse_pcb(pcb_plug_io_t *ctx, pcb_board_t *Ptr, const char *Filename, rnd_conf_role_t settings_dest) { int res; char *errmsg = NULL, *realfn; Index: read.h =================================================================== --- read.h (revision 30944) +++ read.h (revision 30945) @@ -27,7 +27,7 @@ #include "plug_io.h" int io_lihata_test_parse(pcb_plug_io_t *ctx, pcb_plug_iot_t typ, const char *Filename, FILE *f); -int io_lihata_parse_pcb(pcb_plug_io_t *ctx, pcb_board_t *Ptr, const char *Filename, conf_role_t settings_dest); +int io_lihata_parse_pcb(pcb_plug_io_t *ctx, pcb_board_t *Ptr, const char *Filename, rnd_conf_role_t settings_dest); int io_lihata_parse_font(pcb_plug_io_t *ctx, pcb_font_t *Ptr, const char *Filename); int io_lihata_parse_subc(pcb_plug_io_t *ctx, pcb_data_t *Ptr, const char *name, const char *subfpname); int io_lihata_parse_buffer(pcb_plug_io_t *ctx, pcb_buffer_t *buff, const char *filename);