1/* 2 3Copyright 1993 by Davor Matic 4 5Permission to use, copy, modify, distribute, and sell this software 6and its documentation for any purpose is hereby granted without fee, 7provided that the above copyright notice appear in all copies and that 8both that copyright notice and this permission notice appear in 9supporting documentation. Davor Matic makes no representations about 10the suitability of this software for any purpose. It is provided "as 11is" without express or implied warranty. 12 13*/ 14 15#ifndef XNESTFONT_H 16#define XNESTFONT_H 17 18typedef struct { 19 XFontStruct *font_struct; 20} xnestPrivFont; 21 22extern int xnestFontPrivateIndex; 23 24#define xnestFontPriv(pFont) \ 25 ((xnestPrivFont *)FontGetPrivate(pFont, xnestFontPrivateIndex)) 26 27#define xnestFontStruct(pFont) (xnestFontPriv(pFont)->font_struct) 28 29#define xnestFont(pFont) (xnestFontStruct(pFont)->fid) 30 31Bool xnestRealizeFont(ScreenPtr pScreen, FontPtr pFont); 32Bool xnestUnrealizeFont(ScreenPtr pScreen, FontPtr pFont); 33 34#endif /* XNESTFONT_H */ 35