Index: eagle/eagle_bin_text.txt =================================================================== --- eagle/eagle_bin_text.txt (revision 14984) +++ eagle/eagle_bin_text.txt (revision 14985) @@ -111,3 +111,17 @@ if we have interpreted the node counts properly, the binary tree parser now needs to cope with a text block that is not likely to be 24 bytes like all the other nodes it knows about. +Where to process the text strings: + +near the bottom of eagle_bin.c, just after the layout tree has been read, there is a prototype +routine read_notes(ctx, f, fn, &eagle_bin_ctx) that reads in the preamble bytes, reads the text block +length bytes, then readss until the end of the text block, but does nothing with it currently, +merely looking to get to the end of it so that the next routine can find and read the DRC block + + /* could test if < v4 as v3.xx seems to have no DRC or Netclass or Free Text end blocks */ + read_notes(ctx, f, fn, &eagle_bin_ctx); + +at a minimum the individual '\0' delimited text block strings will need to be read in for use/mapping +somewhere around here + +