home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / banners-1.1 / part01 / banner-12 / flags.h < prev    next >
C/C++ Source or Header  |  1993-04-11  |  472b  |  14 lines

  1. /* flag structure for banner routine */
  2.  
  3. typedef struct {
  4. unsigned int    italic:1,    /* true - letters tilted right */
  5.         dblwidth:1,    /* true - letters 2x as wide */
  6.         halfspace:1;    /* true - add leading half space (centering) */
  7. int        height;        /* number of lines per 'pixel' */
  8.                 /* (2 gives double height, 1 gives normal) */
  9. char        bannerch;    /* char. to use for 'pixel.'  0 - print each */
  10.                 /* letter with the letter itself. */
  11. } banflags;
  12.  
  13. extern banflags banFlagDefault;
  14.