⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listpix.c

📁 用于nano-x的xlib
💻 C
字号:
#include "nxlib.h"XPixmapFormatValues *XListPixmapFormats(Display *dpy, int *count){	XPixmapFormatValues *formats =		(XPixmapFormatValues *)Xmalloc(sizeof(XPixmapFormatValues));	if (formats) {		ScreenFormat *sf = dpy->pixmap_format;		formats->depth = sf->depth;		formats->bits_per_pixel = sf->bits_per_pixel;		formats->scanline_pad = sf->scanline_pad;		*count = 1;    	}	return formats;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -