Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAndrea Weikert <elubie@gmx.net>2010-10-19 22:59:15 +0400
committerAndrea Weikert <elubie@gmx.net>2010-10-19 22:59:15 +0400
commit56f89d2375dc9f2fe4de9bfbce876cc4bb466008 (patch)
treeb28734e34864c92c4a91b8b439ea25e553aba73a /source
parentfdfc09b49eb5b445e047dbc27bfb5abde470a665 (diff)
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! :))
Diffstat (limited to 'source')
-rw-r--r--source/blender/quicktime/apple/quicktime_export.c4
-rw-r--r--source/blender/quicktime/apple/quicktime_import.c1
2 files changed, 4 insertions, 1 deletions
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 <QTML.h>
#include <TextUtils.h>
#include <QuickTimeComponents.h>
+#include <QTLoadLibraryUtils.h>
#endif /* _WIN32 */