changeset 9405:a4444e7ee56a

real cygwin support by Sascha Sommer <saschasommer@freenet.de>
author alex
date Wed, 12 Feb 2003 15:39:59 +0000
parents 7a43a52b9f60
children 50fd46cf5d14
files libmpcodecs/ad_qtaudio.c libmpcodecs/vd_qtvideo.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/ad_qtaudio.c	Tue Feb 11 21:44:55 2003 +0000
+++ b/libmpcodecs/ad_qtaudio.c	Wed Feb 12 15:39:59 2003 +0000
@@ -10,7 +10,7 @@
 #include "ad_internal.h"
 #include "bswap.h"
 
-#ifdef USE_WIN32DLL
+#ifdef WIN32_LOADER
 #include "ldt_keeper.h"
 #endif
 
@@ -81,7 +81,7 @@
 static int loader_init()
 {
 
-#ifdef USE_WIN32DLL
+#ifdef WIN32_LOADER
     Setup_LDT_Keeper();
 #endif
     qtml_dll = LoadLibraryA("qtmlClient.dll");
--- a/libmpcodecs/vd_qtvideo.c	Tue Feb 11 21:44:55 2003 +0000
+++ b/libmpcodecs/vd_qtvideo.c	Wed Feb 12 15:39:59 2003 +0000
@@ -8,7 +8,7 @@
 #include "mp_msg.h"
 #include "vd_internal.h"
 
-#ifdef USE_WIN32DLL
+#ifdef WIN32_LOADER
 #include "ldt_keeper.h"
 #endif
 
@@ -98,7 +98,7 @@
     CodecInfo cinfo;	// for ImageCodecGetCodecInfo()
     ImageSubCodecDecompressCapabilities icap; // for ImageCodecInitialize()
 
-#ifdef USE_WIN32DLL
+#ifdef WIN32_LOADER
     Setup_LDT_Keeper();
 #endif