aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-03-11 00:29:12 +0000
committerKim F. Storm2004-03-11 00:29:12 +0000
commit175ca1f4cb9eec4a02066fef6d285045ef586564 (patch)
tree5a5f0e6e56ba417d9c08444c8e5e63bc88b0ded2 /src
parent6e7e181dfc6dfc901f7375f34a9b0a298d884962 (diff)
downloademacs-175ca1f4cb9eec4a02066fef6d285045ef586564.tar.gz
emacs-175ca1f4cb9eec4a02066fef6d285045ef586564.zip
Image consolidation:
(x_bitmap_height, x_bitmap_width, x_bitmap_pixmap) (x_reference_bitmap, x_create_bitmap_from_data) (x_create_bitmap_from_file, x_destroy_bitmap) (x_create_bitmap_mask): Move prototypes from dispextern.h. (gamma_correct) [MAC_OS]: Add prototype.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index bb421e0618b..8eabbe34a7a 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -2595,6 +2595,21 @@ void w32_init_fringe P_ ((void));
2595void w32_reset_fringes P_ ((void)); 2595void w32_reset_fringes P_ ((void));
2596#endif 2596#endif
2597 2597
2598/* Defined in image.c */
2599
2600extern int x_bitmap_height P_ ((struct frame *, int));
2601extern int x_bitmap_width P_ ((struct frame *, int));
2602extern int x_bitmap_pixmap P_ ((struct frame *, int));
2603extern void x_reference_bitmap P_ ((struct frame *, int));
2604extern int x_create_bitmap_from_data P_ ((struct frame *, char *,
2605 unsigned int, unsigned int));
2606extern int x_create_bitmap_from_file P_ ((struct frame *, Lisp_Object));
2607#ifndef x_destroy_bitmap
2608extern void x_destroy_bitmap P_ ((struct frame *, int));
2609#endif
2610extern void x_destroy_all_bitmaps P_ ((Display_Info *));
2611extern int x_create_bitmap_mask P_ ((struct frame * , int));
2612
2598/* Defined in sysdep.c */ 2613/* Defined in sysdep.c */
2599 2614
2600void get_frame_size P_ ((int *, int *)); 2615void get_frame_size P_ ((int *, int *));
@@ -2647,6 +2662,9 @@ void gamma_correct P_ ((struct frame *, XColor *));
2647#ifdef WINDOWSNT 2662#ifdef WINDOWSNT
2648void gamma_correct P_ ((struct frame *, COLORREF *)); 2663void gamma_correct P_ ((struct frame *, COLORREF *));
2649#endif 2664#endif
2665#ifdef MAC_OS
2666void gamma_correct P_ ((struct frame *, unsigned long *));
2667#endif
2650 2668
2651#ifdef HAVE_WINDOW_SYSTEM 2669#ifdef HAVE_WINDOW_SYSTEM
2652 2670