diff options
| author | YAMAMOTO Mitsuharu | 2005-03-04 11:07:11 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2005-03-04 11:07:11 +0000 |
| commit | d45b2e9e31773d4590e7e2d21cf656c2344f3590 (patch) | |
| tree | 45e9438d421e5f29900888d1ad8f4a80f3a81221 /src/image.c | |
| parent | 3ec33130452a969bf164f29279e84b2314a04eb5 (diff) | |
| download | emacs-d45b2e9e31773d4590e7e2d21cf656c2344f3590.tar.gz emacs-d45b2e9e31773d4590e7e2d21cf656c2344f3590.zip | |
[!MAC_OSX && TARGET_API_MAC_CARBON]: Include QuickTime.h.
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/image.c b/src/image.c index 9c2f6962b6e..0e48b1d2bcb 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -88,15 +88,19 @@ typedef struct w32_bitmap_record Bitmap_Record; | |||
| 88 | #include <alloca.h> | 88 | #include <alloca.h> |
| 89 | #include <sys/param.h> | 89 | #include <sys/param.h> |
| 90 | #endif | 90 | #endif |
| 91 | #if TARGET_API_MAC_CARBON | ||
| 91 | #ifdef MAC_OSX | 92 | #ifdef MAC_OSX |
| 92 | #include <QuickTime/QuickTime.h> | 93 | #include <QuickTime/QuickTime.h> |
| 93 | #else /* not MAC_OSX */ | 94 | #else /* not MAC_OSX */ |
| 95 | #include <QuickTime.h> | ||
| 96 | #endif /* not MAC_OSX */ | ||
| 97 | #else /* not TARGET_API_MAC_CARBON */ | ||
| 94 | #include <Windows.h> | 98 | #include <Windows.h> |
| 95 | #include <Gestalt.h> | 99 | #include <Gestalt.h> |
| 96 | #include <TextUtils.h> | 100 | #include <TextUtils.h> |
| 97 | #include <ImageCompression.h> | 101 | #include <ImageCompression.h> |
| 98 | #include <QuickTimeComponents.h> | 102 | #include <QuickTimeComponents.h> |
| 99 | #endif /* not MAC_OSX */ | 103 | #endif /* not TARGET_API_MAC_CARBON */ |
| 100 | 104 | ||
| 101 | /* MAC_TODO : Color tables on Mac. */ | 105 | /* MAC_TODO : Color tables on Mac. */ |
| 102 | #undef COLOR_TABLE_SUPPORT | 106 | #undef COLOR_TABLE_SUPPORT |