bitmap.h

来自「安装DDD之前」· C头文件 代码 · 共 13 行

H
13
字号
/* Structure used to hold bitmap data */typedef struct Bitmap_s {	char           *name;	/* The file name */	char           *data;	/* bitmap format data */	int             width;	/* The width */	int             height;	/* And height */	Pixmap          bitmap;	/* The data as a bitmap */	Pixmap          pixmap;	/* The data as a pixmap */	Boolean         draggable;	/* Is this one draggable */	Widget          state_icon;	/* Drag state icon */}               Bitmap_t, *Bitmap_p;

⌨️ 快捷键说明

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