Author: diego Date: Thu Mar 15 23:38:13 2007 New Revision: 22625 Modified: trunk/loader/Makefile trunk/loader/dmo/DMO_AudioDecoder.c trunk/loader/dmo/DMO_VideoDecoder.c Log: Use explicit path for headers from the dshow/ subdirectory. Modified: trunk/loader/Makefile ============================================================================== --- trunk/loader/Makefile (original) +++ trunk/loader/Makefile Thu Mar 15 23:38:13 2007 @@ -2,7 +2,7 @@ include ../config.mak LIBNAME_COMMON = libloader.a -CFLAGS= -Idshow -DMPLAYER -D__WINE__ -DNOAVIFILE_HEADERS +CFLAGS= -DMPLAYER -D__WINE__ -DNOAVIFILE_HEADERS #CFLAGS+=-Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT SRCS_COMMON = driver.c afl.c vfl.c Modified: trunk/loader/dmo/DMO_AudioDecoder.c ============================================================================== --- trunk/loader/dmo/DMO_AudioDecoder.c (original) +++ trunk/loader/dmo/DMO_AudioDecoder.c Thu Mar 15 23:38:13 2007 @@ -9,7 +9,7 @@ #include "audiodecoder.h" #include "except.h" #else -#include "libwin32.h" +#include "dshow/libwin32.h" #ifdef WIN32_LOADER #include "ldt_keeper.h" #endif Modified: trunk/loader/dmo/DMO_VideoDecoder.c ============================================================================== --- trunk/loader/dmo/DMO_VideoDecoder.c (original) +++ trunk/loader/dmo/DMO_VideoDecoder.c Thu Mar 15 23:38:13 2007 @@ -5,8 +5,8 @@ *********************************************************/ #include "config.h" -#include "guids.h" -#include "interfaces.h" +#include "dshow/guids.h" +#include "dshow/interfaces.h" #include "registry.h" #ifdef WIN32_LOADER #include "../ldt_keeper.h" @@ -15,7 +15,7 @@ #ifndef NOAVIFILE_HEADERS #include "videodecoder.h" #else -#include "libwin32.h" +#include "dshow/libwin32.h" #endif #include "DMO_Filter.h"