home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / e / amigae / modulessrc / diskfont / glyph.e < prev    next >
Text File  |  1995-07-05  |  661b  |  37 lines

  1. OPT MODULE
  2. OPT EXPORT
  3.  
  4. MODULE 'exec/libraries',
  5.        'exec/nodes'
  6.  
  7. CONST DISKFONT_GLYPH_I=1
  8.  
  9. OBJECT glyphengine
  10.   library:PTR TO lib
  11.   name:LONG
  12. ENDOBJECT     /* SIZEOF=NONE !!! */
  13.  
  14. OBJECT glyphmap
  15.   bmmodulo:INT  -> This is unsigned
  16.   bmrows:INT  -> This is unsigned
  17.   blackleft:INT  -> This is unsigned
  18.   blacktop:INT  -> This is unsigned
  19.   blackwidth:INT  -> This is unsigned
  20.   blackheight:INT  -> This is unsigned
  21.   xorigin:LONG
  22.   yorigin:LONG
  23.   x0:INT
  24.   y0:INT
  25.   x1:INT
  26.   y1:INT
  27.   width:LONG
  28.   bitmap:PTR TO CHAR
  29. ENDOBJECT     /* SIZEOF=36 */
  30.  
  31. OBJECT glyphwidthentry
  32.   node:mln
  33.   code:INT  -> This is unsigned
  34.   width:LONG
  35. ENDOBJECT     /* SIZEOF=14 */
  36.  
  37.