diff options
| author | Kim F. Storm | 2004-03-11 00:29:12 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-03-11 00:29:12 +0000 |
| commit | 175ca1f4cb9eec4a02066fef6d285045ef586564 (patch) | |
| tree | 5a5f0e6e56ba417d9c08444c8e5e63bc88b0ded2 /src | |
| parent | 6e7e181dfc6dfc901f7375f34a9b0a298d884962 (diff) | |
| download | emacs-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.h | 18 |
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)); | |||
| 2595 | void w32_reset_fringes P_ ((void)); | 2595 | void w32_reset_fringes P_ ((void)); |
| 2596 | #endif | 2596 | #endif |
| 2597 | 2597 | ||
| 2598 | /* Defined in image.c */ | ||
| 2599 | |||
| 2600 | extern int x_bitmap_height P_ ((struct frame *, int)); | ||
| 2601 | extern int x_bitmap_width P_ ((struct frame *, int)); | ||
| 2602 | extern int x_bitmap_pixmap P_ ((struct frame *, int)); | ||
| 2603 | extern void x_reference_bitmap P_ ((struct frame *, int)); | ||
| 2604 | extern int x_create_bitmap_from_data P_ ((struct frame *, char *, | ||
| 2605 | unsigned int, unsigned int)); | ||
| 2606 | extern int x_create_bitmap_from_file P_ ((struct frame *, Lisp_Object)); | ||
| 2607 | #ifndef x_destroy_bitmap | ||
| 2608 | extern void x_destroy_bitmap P_ ((struct frame *, int)); | ||
| 2609 | #endif | ||
| 2610 | extern void x_destroy_all_bitmaps P_ ((Display_Info *)); | ||
| 2611 | extern int x_create_bitmap_mask P_ ((struct frame * , int)); | ||
| 2612 | |||
| 2598 | /* Defined in sysdep.c */ | 2613 | /* Defined in sysdep.c */ |
| 2599 | 2614 | ||
| 2600 | void get_frame_size P_ ((int *, int *)); | 2615 | void get_frame_size P_ ((int *, int *)); |
| @@ -2647,6 +2662,9 @@ void gamma_correct P_ ((struct frame *, XColor *)); | |||
| 2647 | #ifdef WINDOWSNT | 2662 | #ifdef WINDOWSNT |
| 2648 | void gamma_correct P_ ((struct frame *, COLORREF *)); | 2663 | void gamma_correct P_ ((struct frame *, COLORREF *)); |
| 2649 | #endif | 2664 | #endif |
| 2665 | #ifdef MAC_OS | ||
| 2666 | void gamma_correct P_ ((struct frame *, unsigned long *)); | ||
| 2667 | #endif | ||
| 2650 | 2668 | ||
| 2651 | #ifdef HAVE_WINDOW_SYSTEM | 2669 | #ifdef HAVE_WINDOW_SYSTEM |
| 2652 | 2670 | ||