Help generation reports an error on this declaration:
function hweval(const sBe,sPar:pchar):pchar; cdecl;
external 'hwibproc.dll' ;
What is wrong with it ?
Overloaded functions in same unit are not documented
correctly.
For example:
procedure TelAzoEdEnt
(Ed:TDBedit;KerBtn:THWKerButton); overload;
procedure TelAzoEdEnt
(Ed:Tedit;KerBtn:THWKerButton); overload;
In generated help file exists 2 links to TelAzoEdEnt but
both points to first declaration. Any ideas, how to
correct this
Regards
Peter Miglinszki
Logged In: NO
To correctly document overloaded procedures You have to
name each occurence. For example:
procedure TelAzoEdEnt
(Ed:TDBedit;KerBtn:THWKerButton); overload
{:TelAzoEdEnt1};
procedure TelAzoEdEnt
(Ed:Tedit;KerBtn:THWKerButton); overload {:TelAzoEdEnt2};
Note that name given as comment MUST start before
semicollon, and first char within comment brackets MUST be :
so format is:
overload {:SomeName};