diff options
| author | YAMAMOTO Mitsuharu | 2006-05-05 06:44:55 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-05-05 06:44:55 +0000 |
| commit | 93ad8ad96bb9863d49921dd51056b650b1766fba (patch) | |
| tree | 84b7e69224a547c6548763485bd2abaa34efec41 /src | |
| parent | a733ef16799162594cf6259a37f557e48144a662 (diff) | |
| download | emacs-93ad8ad96bb9863d49921dd51056b650b1766fba.tar.gz emacs-93ad8ad96bb9863d49921dd51056b650b1766fba.zip | |
(mac_make_lispy_event_code): Remove extern.
(mac_post_mouse_moved_event): Add extern.
(mac_aelist_to_lisp, mac_aedesc_to_lisp): Change arg 1 to
`const AEDesc *' in externs.
(create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]: New extern.
Diffstat (limited to 'src')
| -rw-r--r-- | src/macterm.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/macterm.h b/src/macterm.h index f23554f01c6..fdc74cb6376 100644 --- a/src/macterm.h +++ b/src/macterm.h | |||
| @@ -586,8 +586,8 @@ extern void mac_clear_area P_ ((struct frame *, int, int, | |||
| 586 | extern void mac_unload_font P_ ((struct mac_display_info *, XFontStruct *)); | 586 | extern void mac_unload_font P_ ((struct mac_display_info *, XFontStruct *)); |
| 587 | extern OSErr install_window_handler P_ ((WindowPtr)); | 587 | extern OSErr install_window_handler P_ ((WindowPtr)); |
| 588 | extern void remove_window_handler P_ ((WindowPtr)); | 588 | extern void remove_window_handler P_ ((WindowPtr)); |
| 589 | extern Lisp_Object mac_make_lispy_event_code P_ ((int)); | ||
| 590 | extern void do_menu_choice P_ ((SInt32)); | 589 | extern void do_menu_choice P_ ((SInt32)); |
| 590 | extern OSStatus mac_post_mouse_moved_event P_ ((void)); | ||
| 591 | #if USE_CG_DRAWING | 591 | #if USE_CG_DRAWING |
| 592 | extern void mac_prepare_for_quickdraw P_ ((struct frame *)); | 592 | extern void mac_prepare_for_quickdraw P_ ((struct frame *)); |
| 593 | #endif | 593 | #endif |
| @@ -623,12 +623,15 @@ extern void free_frame_menubar P_ ((struct frame *)); | |||
| 623 | /* Defined in mac.c. */ | 623 | /* Defined in mac.c. */ |
| 624 | 624 | ||
| 625 | extern void mac_clear_font_name_table P_ ((void)); | 625 | extern void mac_clear_font_name_table P_ ((void)); |
| 626 | extern Lisp_Object mac_aedesc_to_lisp P_ ((AEDesc *)); | 626 | extern Lisp_Object mac_aedesc_to_lisp P_ ((const AEDesc *)); |
| 627 | #if TARGET_API_MAC_CARBON | 627 | #if TARGET_API_MAC_CARBON |
| 628 | extern OSErr create_apple_event_from_event_ref P_ ((EventRef, UInt32, | 628 | extern OSErr create_apple_event_from_event_ref P_ ((EventRef, UInt32, |
| 629 | EventParamName *, | 629 | EventParamName *, |
| 630 | EventParamType *, | 630 | EventParamType *, |
| 631 | AppleEvent *)); | 631 | AppleEvent *)); |
| 632 | extern OSErr create_apple_event_from_drag_ref P_ ((DragRef, UInt32, | ||
| 633 | FlavorType *, | ||
| 634 | AppleEvent *)); | ||
| 632 | extern CFStringRef cfstring_create_with_utf8_cstring P_ ((const char *)); | 635 | extern CFStringRef cfstring_create_with_utf8_cstring P_ ((const char *)); |
| 633 | extern CFStringRef cfstring_create_with_string P_ ((Lisp_Object)); | 636 | extern CFStringRef cfstring_create_with_string P_ ((Lisp_Object)); |
| 634 | extern Lisp_Object cfdata_to_lisp P_ ((CFDataRef)); | 637 | extern Lisp_Object cfdata_to_lisp P_ ((CFDataRef)); |