comparison src/macmenu.c @ 60363:c4138f578114

[TARGET_API_MAC_CARBON]: Don't include headers that are included via Carbon.h.
author YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
date Fri, 04 Mar 2005 11:09:33 +0000
parents 4ad0594e1ac4
children d119b1761be3 29e773288013
comparison
equal deleted inserted replaced
60362:f69bf8238a7e 60363:c4138f578114
33 #include "blockinput.h" 33 #include "blockinput.h"
34 #include "buffer.h" 34 #include "buffer.h"
35 #include "charset.h" 35 #include "charset.h"
36 #include "coding.h" 36 #include "coding.h"
37 37
38 #ifndef MAC_OSX 38 #if !TARGET_API_MAC_CARBON
39 #include <MacTypes.h> 39 #include <MacTypes.h>
40 #include <Menus.h> 40 #include <Menus.h>
41 #include <QuickDraw.h> 41 #include <QuickDraw.h>
42 #include <ToolUtils.h> 42 #include <ToolUtils.h>
43 #include <Fonts.h> 43 #include <Fonts.h>
45 #include <Windows.h> 45 #include <Windows.h>
46 #include <Events.h> 46 #include <Events.h>
47 #if defined (__MRC__) || (__MSL__ >= 0x6000) 47 #if defined (__MRC__) || (__MSL__ >= 0x6000)
48 #include <ControlDefinitions.h> 48 #include <ControlDefinitions.h>
49 #endif 49 #endif
50 #endif /* not MAC_OSX */ 50 #endif /* not TARGET_API_MAC_CARBON */
51 51
52 /* This may include sys/types.h, and that somehow loses 52 /* This may include sys/types.h, and that somehow loses
53 if this is not done before the other system files. */ 53 if this is not done before the other system files. */
54 #include "macterm.h" 54 #include "macterm.h"
55 55