would like to use the same name for a procedure and a function , can I do this, any regulations on this issue ?
/// first version
function RunMyImageProcess (aRect : TRect; aBitmap : TBitmap ): TPoint; overload ;
/// a overload version, this works , it is simple :-)
function RunMyImageProcess (aRect : TRect; aBitmap : TBitmap ; aprocessflag : Boolean): TPoint; overload ;
/// need now a procedure
/// will return 2 Points now !!!
/// can I do this in DELPHI ????
procedure RunMyImageProcess (var LowerLeft, Upperright: TPoint; aBitmap : TBitmap ; aprocessflag : Boolean): boolean; overload ;