Hello,
when writing DLLs in Delphi one has a .bdsproject file
which may contain code and contains te list of
exported functions in the exports section.
It would be helpfull if this file could be parsed and
the exported functions could be listed in the output.
They don't need to be listed with all params etc. in
the first run since that info is not at this position
but listing them with link to the real declaration
would be good!
e.g.:
library test;
uses
SysUtils,
Classes,
myunit in 'myunit.pas';
{$R *.res}
exports
myfunction1,
myfunction2;
end.
A section for listing myfunction1 and myfunction2
should be provided in the output and these functions
should hyperlink to the corresponding
declaration/description in myunit.
Anonymous
Logged In: YES
user_id=248829
The .bdsproject file is an XML file.
I think you speak about the .DPR file, which is already
parsed. The documentation list all exports at the end of
the DLL page.
Just try to create a new project pointing to the DPR file.
TridenT