home *** CD-ROM | disk | FTP | other *** search
- /*
- * font.h: hterm font file definition
- *
- * Author: HIRANO Satoshi
- * (C) 1990 Halca Computer Science Laboratory TM
- *
- * Edition History:
- * 1.1 90/01/30 Halca.Hirano creation
- *
- * $Header: font.hv 1.2 90/06/30 03:51:26 hirano Exp $
- */
-
- #define JIS_KANA_LAST 0x2576 /* parmanent cache last char */
- #define JIS_SPACE 0x2121 /* default char */
-
- typedef struct {
- unsigned short startChar; /* index first char code */
- unsigned short endChar; /* index end char code */
- unsigned short numFont; /* number of fonts */
- unsigned short onMemEndChar; /* last char of on memory font */
- unsigned short numOnMemFont; /* number of on memory fonts */
- unsigned short numIndex; /* index table entry */
- unsigned short wwidth; /* W width in bytes */
- unsigned short dwidth; /* D width in bytes */
- long fontAddress; /* font body file address */
- long indexAddress; /* index file address */
- char FAR *fontBuf;
- long HUGE *indexTab;
- } FontDesc;
-
- typedef struct {
- char comment[16*3]; /* copyright */
- FontDesc ascii;
- FontDesc kanji;
- /* ascii font body */
- /* ascii font index table */
- /* kanji font body */
- /* kanji font index table */
- } FontFile;
-