home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 1999 March / PCShareware-3-99.iso / IMPLE / DJGPP.RAR / DJGPP2 / XLIB-SR0.ZIP / SRC / XLIBEMU / UNLDFONT.C < prev    next >
C/C++ Source or Header  |  1994-02-10  |  245b  |  17 lines

  1. /* $Id: unldfont.c 1.1 1994/02/11 00:48:33 ulrich Exp $ */
  2. /*
  3.  * X library function XUnloadFont.
  4.  */
  5.  
  6. #include "Xlibemu.h"
  7.  
  8. int
  9. XUnloadFont(register Display *dpy,
  10.         Font font)
  11. {
  12.   if (font != (Font) 0)
  13.     GrUnloadFont (font);
  14.   return 0;
  15. }
  16.  
  17.