Changeset 551


Ignore:
Timestamp:
Aug 8, 2003, 11:04:34 AM (22 years ago)
Author:
bird
Message:

Made it handle new emxexp output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/misc/dllar.cmd

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r550 r551  
    243243            if (EXPORT_BY_ORDINALS) then
    244244            do
    245                 line = line||copies('    ',(71-length(line))%8)'@'ordinal' NONAME';
     245                iPos = pos(';', line);
     246                if (iPos > 1) then
     247                    line = strip(substr(line, 1, iPos - 1), 'T');
     248                line = line||' @'||ordinal||' NONAME';
    246249                ordinal = ordinal + 1;
    247250            end;
Note: See TracChangeset for help on using the changeset viewer.