improve communication with editor (windows side)

This commit is contained in:
Ondrej Novak 2025-07-21 19:22:00 +02:00
parent 4ed39ec344
commit b33fb43d78
11 changed files with 76 additions and 24 deletions

View file

@ -348,6 +348,15 @@ void reload_ddls(void) {
dinfo->nametable = load_file_table(bmf);
}
}
for(i=0;i<BK_MAJOR_HANDLES;i++) if (_handles[i]!=NULL) {
p=(THANDLE_DATA *)(_handles[i]);
for(j=0;j<BK_MINOR_HANDLES;j++) {
THANDLE_DATA *h = p+j;
if (h->src_file[0]) {
get_file_entry(h->path,h->src_file,h);
}
}
}
}