📄 xallcells.c
字号:
/* $XConsortium: XAllCells.c,v 11.19 91/01/06 11:44:03 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.*/#define NEED_REPLIES#include "Xlibint.h"Status XAllocColorCells(dpy, cmap, contig, masks, nplanes, pixels, ncolors)register Display *dpy;Colormap cmap;Bool contig;unsigned int ncolors; /* CARD16 */unsigned int nplanes; /* CARD16 */unsigned long *masks; /* LISTofCARD32 */ /* RETURN */unsigned long *pixels; /* LISTofCARD32 */ /* RETURN */{ Status status; xAllocColorCellsReply rep; register xAllocColorCellsReq *req; LockDisplay(dpy); GetReq(AllocColorCells, req); req->cmap = cmap; req->colors = ncolors; req->planes = nplanes; req->contiguous = contig; status = _XReply(dpy, (xReply *)&rep, 0, xFalse); if (status) { _XRead32 (dpy, (long *) pixels, 4L * (long) (rep.nPixels)); _XRead32 (dpy, (long *) masks, 4L * (long) (rep.nMasks)); } UnlockDisplay(dpy); SyncHandle(); return(status);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -