/*
 *  VSF_INTERIOR                                (C) Digital Design 1990
 *
 *  SET FILL INTERIOR STYLE
 *
 *  Diese Funktion setzt den Flltyp fr die Fllfunktionen.
 */
#include <gemdefs.h>

int vsf_interior( int handle, int style )
{
  intin[0] = style; /* Flltyp: 0 = Flche wird nicht ausgefllt        *
                     *          1 = Flche wird komplett mit Fllfarbe  *
                     *              ausgefllt                          *
                     *          2 = Flche wird punktiert ausgefllt    *
                     *          3 = Flche wird schraffiert ausgefllt  *
                     *          4 = Flche wird mit benutzereigenem     *
                     *              Fllmuster ausgefllt (Ývsf_updatÝVSF_UPDA.CÝ)   */
  VDI( 23, 0, 1, handle );

  return intout[0]; /* = set_interior: Ausgewhlter Flltyp             */
}
/* siehe auch: Ývsf_styleÝVSF_STYL.CÝ */

