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 >
Wrap
C/C++ Source or Header
|
1994-02-10
|
245b
|
17 lines
/* $Id: unldfont.c 1.1 1994/02/11 00:48:33 ulrich Exp $ */
/*
* X library function XUnloadFont.
*/
#include "Xlibemu.h"
int
XUnloadFont(register Display *dpy,
Font font)
{
if (font != (Font) 0)
GrUnloadFont (font);
return 0;
}