📄 xloadfont.c
字号:
/* $XConsortium: XLoadFont.c,v 11.11 91/01/06 11:46:51 rws Exp $ *//* Copyright Massachusetts Institute of Technology 1986 *//*Permission to use, copy, modify, distribute, and sell this software and itsdocumentation for any purpose is hereby granted without fee, provided thatthe above copyright notice appear in all copies and that both thatcopyright notice and this permission notice appear in supportingdocumentation, and that the name of M.I.T. not be used in advertising orpublicity pertaining to distribution of the software without specific,written prior permission. M.I.T. makes no representations about thesuitability of this software for any purpose. It is provided "as is"without express or implied warranty.*/#include "Xlibint.h"#if NeedFunctionPrototypesFont XLoadFont ( register Display *dpy, _Xconst char *name)#elseFont XLoadFont (dpy, name) register Display *dpy; char *name;#endif{ register long nbytes; Font fid; register xOpenFontReq *req; LockDisplay(dpy); GetReq(OpenFont, req); nbytes = req->nbytes = name ? strlen(name) : 0; req->fid = fid = XAllocID(dpy); req->length += (nbytes+3)>>2; Data (dpy, name, nbytes); UnlockDisplay(dpy); SyncHandle(); return (fid); /* can't return (req->fid) since request may have already been sent */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -