Inside a DPR I have
procedure A;
begin
...
B;
...
end;
procedure B;
begin
...
A;
...
end;
How to handle such case inside a DPR? inside a normal unit it's quite easy I just need to declare both procedures in the interface
section of the unit, but inside a dpr how to do as their is no interface section.