/*
 *  VST_COLOR                                   (C) Digital Design 1990
 *
 *  SET GRAPHIC TEXT COLOR INDEX
 *
 *  Mit dieser Funktion wird die Farbe des Textes eingestellt.
 */
#include <gemdefs.h>

int vst_color( int handle, int color_index )
{
  intin[0] = color_index; /* Farbindex fr Text                         */

  VDI( 22, 0, 1, handle );

  return intout[0]; /* = set_color: Ausgew„hlter Farbindex              */
}
/* siehe auch: İvs_colorİVS_COLOR.Cİ */

