home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / bsd / vfont.h < prev   
C/C++ Source or Header  |  1990-01-22  |  546b  |  28 lines

  1. /*
  2.  * Copyright (c) 1980 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)vfont.h    5.1 (Berkeley) 5/30/85
  7.  */
  8.  
  9. /*
  10.  * The structures header and dispatch define the format of a font file.
  11.  *
  12.  * See vfont(5) for more details.
  13.  */
  14. struct header {
  15.     short magic;
  16.     unsigned short size;
  17.     short maxx;
  18.     short maxy;
  19.     short xtend;
  20. }; 
  21.  
  22. struct dispatch {
  23.     unsigned short addr;
  24.     short nbytes;
  25.     char up,down,left,right;
  26.     short width;
  27. };
  28.