Lines Matching defs:img
256 XImage *img = (XImage *) XpmMalloc(sizeof(XImage));
258 if (img) {
264 img->bitmap = CreateCompatibleBitmap(*d, width, height);
266 img->bitmap = CreateBitmap(width, height, 1 /* plane */ ,
269 img->width = width;
270 img->height = height;
271 img->depth = depth;
273 return (img);
278 XImageFree(XImage *img)
280 if (img) {
281 XpmFree(img);
285 XDestroyImage(XImage *img)
287 if (img) {
288 DeleteObject(img->bitmap); /* check return ??? */
289 XImageFree(img);