From 56f89d2375dc9f2fe4de9bfbce876cc4bb466008 Mon Sep 17 00:00:00 2001 From: Andrea Weikert Date: Tue, 19 Oct 2010 18:59:15 +0000 Subject: compile fixes on windows for quicktime. * solved two "'blah' undefined, assuming extern returning int" 'warnings' that jesterKing now changed to be reported as errors (thanks! :)) --- source/blender/quicktime/apple/quicktime_export.c | 4 +++- source/blender/quicktime/apple/quicktime_import.c | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c index 2623a598d5f..362f17ee945 100644 --- a/source/blender/quicktime/apple/quicktime_export.c +++ b/source/blender/quicktime/apple/quicktime_export.c @@ -621,7 +621,9 @@ void end_qt(void) { //printf("Finished QuickTime movie.\n"); } - ExitMoviesOnThread(); +#ifdef __APPLE__ + ExitMoviesOnThread(); +#endif if(qtexport) { MEM_freeN(qtexport); diff --git a/source/blender/quicktime/apple/quicktime_import.c b/source/blender/quicktime/apple/quicktime_import.c index 699b2c4f6e3..917a75772ce 100644 --- a/source/blender/quicktime/apple/quicktime_import.c +++ b/source/blender/quicktime/apple/quicktime_import.c @@ -48,6 +48,7 @@ #include #include #include +#include #endif /* _WIN32 */ -- cgit v1.2.3