aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2006-09-19 03:19:05 +0000
committerYAMAMOTO Mitsuharu2006-09-19 03:19:05 +0000
commit0d3f16e5fe3185a9ff5425123857b31d51ee3a41 (patch)
tree55454f923ad5d41290f5868bd116876769a86dd4 /src
parent20a1fc8bd9fbe27796d9d7a30018b43c351e39f7 (diff)
downloademacs-0d3f16e5fe3185a9ff5425123857b31d51ee3a41.tar.gz
emacs-0d3f16e5fe3185a9ff5425123857b31d51ee3a41.zip
(struct mac_output): Remove member menubar_active.
(do_menu_choice): Remove extern. (do_apple_menu) [!TARGET_API_MAC_CARBON]: Add extern.
Diffstat (limited to 'src')
-rw-r--r--src/macterm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/macterm.h b/src/macterm.h
index 945dbf3af57..edd89163e13 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -226,7 +226,8 @@ struct x_output
226}; 226};
227 227
228/* The collection of data describing a window on the Mac. */ 228/* The collection of data describing a window on the Mac. */
229struct mac_output { 229struct mac_output
230{
230 /* Placeholder for things accessed through output_data.x. Must 231 /* Placeholder for things accessed through output_data.x. Must
231 appear first. */ 232 appear first. */
232 struct x_output x_compatible; 233 struct x_output x_compatible;
@@ -316,9 +317,6 @@ struct mac_output {
316 /* Nonzero means tried already to make this frame visible. */ 317 /* Nonzero means tried already to make this frame visible. */
317 char asked_for_visible; 318 char asked_for_visible;
318 319
319 /* Nonzero means menubar is currently active. */
320 char menubar_active;
321
322 /* Relief GCs, colors etc. */ 320 /* Relief GCs, colors etc. */
323 struct relief 321 struct relief
324 { 322 {
@@ -629,8 +627,10 @@ extern OSStatus mac_show_hide_font_panel P_ ((void));
629extern OSStatus mac_set_font_info_for_selection P_ ((struct frame *, int, int)); 627extern OSStatus mac_set_font_info_for_selection P_ ((struct frame *, int, int));
630extern OSStatus install_window_handler P_ ((WindowPtr)); 628extern OSStatus install_window_handler P_ ((WindowPtr));
631extern void remove_window_handler P_ ((WindowPtr)); 629extern void remove_window_handler P_ ((WindowPtr));
632extern void do_menu_choice P_ ((SInt32));
633extern OSStatus mac_post_mouse_moved_event P_ ((void)); 630extern OSStatus mac_post_mouse_moved_event P_ ((void));
631#if !TARGET_API_MAC_CARBON
632extern void do_apple_menu P_ ((SInt16));
633#endif
634#if USE_CG_DRAWING 634#if USE_CG_DRAWING
635extern void mac_prepare_for_quickdraw P_ ((struct frame *)); 635extern void mac_prepare_for_quickdraw P_ ((struct frame *));
636#endif 636#endif