{$mode OBJFPC} interface ... procedure PutPixel(X,Y: LongInt); procedure PutPixel(X,Y: LongInt; Color: DWord); ... implementation ... procedure PutPixel(X,Y: LongInt); begin ... end; procedure PutPixel(X,Y: LongInt; Color: DWord); begin ... end;