aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2007-06-14 08:39:07 +0000
committerYAMAMOTO Mitsuharu2007-06-14 08:39:07 +0000
commit841fb47f3b8bfff69626b6d7e91b93765e3c5942 (patch)
treed8479ccfdb5917b915fba84936119c97c55a455e /src
parentcccda642c8a40655eb70a07ba69ce4c6d3ddcade (diff)
downloademacs-841fb47f3b8bfff69626b6d7e91b93765e3c5942.tar.gz
emacs-841fb47f3b8bfff69626b6d7e91b93765e3c5942.zip
(USE_MAC_TOOLBAR): New define.
Diffstat (limited to 'src')
-rw-r--r--src/macgui.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/macgui.h b/src/macgui.h
index 990765593e1..fb6f858c547 100644
--- a/src/macgui.h
+++ b/src/macgui.h
@@ -117,6 +117,13 @@ typedef unsigned long Time;
117#endif 117#endif
118#endif 118#endif
119 119
120/* Whether to use HIToolbar. */
121#ifndef USE_MAC_TOOLBAR
122#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030 && MAC_OS_X_VERSION_MIN_REQUIRED != 1020
123#define USE_MAC_TOOLBAR 1
124#endif
125#endif
126
120typedef WindowRef Window; 127typedef WindowRef Window;
121typedef GWorldPtr Pixmap; 128typedef GWorldPtr Pixmap;
122 129