/*
 *  GRAF_GROWBOX				(C) Digital Design 1990
 *
 *  Es wird ein sich ausdehnendes Rechteck gezeichnet.
 */
#include <gemdefs.h>

int graf_growbox( int gr_gstx, int gr_gsty, int gr_gstwidth,
		  int gr_gstheight, int gr_gfinx, int gr_gfiny,
		  int gr_gfinwidth, int gr_gfinheight )
{
  intin[0] = gr_gstx;	   /* die X-Koordinate des Anfangsrechtecks	*/
  intin[1] = gr_gsty;	   /* die Y-Koordinate des Anfangsrechtecks	*/
  intin[2] = gr_gstwidth;  /* die Breite des Anfangsrechtecks		*/
  intin[3] = gr_gstheight; /* die H”he des Anfangsrechtecks		*/
  intin[4] = gr_gfinx;	    /* die X-Koordinate des Endrechtecks	*/
  intin[5] = gr_gfiny;	    /* die Y-Koordinate des Endrechtecks	*/
  intin[6] = gr_gfinwidth;  /* die Breite des Endrechtecks		*/
  intin[7] = gr_gfinheight; /* die H”he des Endrechtecks		*/

  AES( 73, 8, 1, 0, 0 );

  return intout[0]; /* = gr_sreturn: positiv bei Erfolg, 0 bei Fehler.	*/
}
/* siehe auch: Ýgraf_shrinkboxÝGRAF_SHR.CÝ */

