pascalabcnet/TestSamples/FormatterTests/input/GraphABCHelper2.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

34 lines
637 B
ObjectPascal

unit GraphABCHelper2;
//#apptype windows
#reference 'System.Windows.Forms.dll'
#reference 'System.Drawing.dll'
interface
uses System.Drawing;
type Color = System.Drawing.Color;
procedure FillRoundRect(x1,y1,x2,y2,w,h: integer; gr: Graphics);
procedure FillRoundRect(x1,y1,x2,y2,w,h: integer; c: Color; gr: Graphics);
implementation
procedure FillRoundRect(x1,y1,x2,y2,w,h: integer; gr: Graphics);
begin
end;
procedure FillRoundRect(x1,y1,x2,y2,w,h: integer; c: Color; gr: Graphics);
begin
end;
procedure RoundRect(x1,y1,x2,y2,w,h: integer; gr: Graphics);
begin
FillRoundRect(x1,y1,x2,y2,w,h,gr);
end;
initialization
end.