/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* bos720 src/bos/kernext/lft/inc/sys/font.h 1.9 */ /* */ /* Licensed Materials - Property of IBM */ /* */ /* COPYRIGHT International Business Machines Corp. 1985,1989 */ /* All Rights Reserved */ /* */ /* US Government Users Restricted Rights - Use, duplication or */ /* disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ /* */ /* IBM_PROLOG_END_TAG */ /* @(#)09 1.9 src/bos/kernext/lft/inc/sys/font.h, sysxdisp, bos720 4/2/99 16:02:16 */ /* * * COMPONENT_NAME: LFTDD * * FUNCTIONS: * * ORIGINS: 27 * * (C) COPYRIGHT International Business Machines Corp. 1985, 1989 * All Rights Reserved * US Government Users Restricted Rights - Use, duplication or * disclosure restricted by GSA ADP Schedule Contract with IBM Corp. * */ #ifndef _L_FONT #define _L_FONT #ifndef XTRN # define XTRN extern #endif struct font_data { uint font_id; /* font_data index (0 based) */ char font_name[16]; /* filename for now */ char font_weight[8]; /* boldness */ char font_slant[8]; /* Roman, italic etc. */ char font_page[8]; /* code page this font renders */ uint font_style; /* 0=apa, */ int font_width; /* charbox width in pels */ int font_height; /* charbox height in pels */ int *font_ptr; /* pointer to rtfont file */ uint font_size; /* size of font structure */ }; XTRN struct font_data fonts[32]; #endif /* _L_FONT */