From: Richard M. Stallman Date: Wed, 14 Nov 2001 22:31:37 +0000 (+0000) Subject: (image_background, image_background_transparent): X-Git-Tag: ttn-vms-21-2-B4~18558 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c26e3f6c55cf2b52f760b3e92b7d41d47dba79f3;p=emacs.git (image_background, image_background_transparent): Conditionalize on HAVE_X_WINDOWS. --- diff --git a/src/dispextern.h b/src/dispextern.h index 892025e41e7..c44deee0f1a 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -2289,10 +2289,14 @@ void forall_images_in_image_cache P_ ((struct frame *, int valid_image_p P_ ((Lisp_Object)); void prepare_image_for_display P_ ((struct frame *, struct image *)); int lookup_image P_ ((struct frame *, Lisp_Object)); + +#ifdef HAVE_X_WINDOWS unsigned long image_background P_ ((struct image *, struct frame *, XImage *ximg)); int image_background_transparent P_ ((struct image *, struct frame *, XImage *mask)); +#endif /* HAVE_X_WINDOWS */ + extern Lisp_Object tip_frame; extern Window tip_window; EXFUN (Fx_show_tip, 6);