diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-09-09 15:56:55 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-09-09 15:56:55 +0000 |
commit | 243d2ec51edb3bd9e5f0d2308e91f5e3a71a1bd1 (patch) | |
tree | 38e2f0f0ac2d5115d4f8a3baab0821a06264cfe8 /src/demuxers | |
parent | f2283073ceb6447c800e7234e20e63d0874e76c8 (diff) | |
download | xine-lib-243d2ec51edb3bd9e5f0d2308e91f5e3a71a1bd1.tar.gz xine-lib-243d2ec51edb3bd9e5f0d2308e91f5e3a71a1bd1.tar.bz2 |
Add a hack to "wine" (WINE_TYPEDEFS_ONLY), to allow compiling the avi demuxer
plugin using a non-gcc compiler. The avi demuxer does not use functions
from "wine" - only defines / structures / typedefs.
CVS patchset: 594
CVS date: 2001/09/09 15:56:55
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/demux_avi.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c index 8d533cc9c..9ac122007 100644 --- a/src/demuxers/demux_avi.c +++ b/src/demuxers/demux_avi.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_avi.c,v 1.38 2001/09/08 18:11:41 guenter Exp $ + * $Id: demux_avi.c,v 1.39 2001/09/09 15:56:55 jkeil Exp $ * * demultiplexer for avi streams * @@ -41,8 +41,10 @@ #include "monitor.h" #include "demux.h" #include "utils.h" -#include "libw32dll/wine/mmreg.h" + +#define WINE_TYPEDEFS_ONLY #include "libw32dll/wine/avifmt.h" +#include "libw32dll/wine/windef.h" #include "libw32dll/wine/vfw.h" /* The following variable indicates the kind of error */ |