diff options
author | kemuri <kemuri9@gmail.com> | 2010-01-23 20:58:29 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-01-23 20:58:29 +0000 |
commit | 420755dd282a913c2163d5589706d6a99a18d10f (patch) | |
tree | 1d85eba63d2d178f31f320d0fb4fd8c60e7b17e6 /libavdevice/vfwcap.c | |
parent | a1b3c5a377976d21b9daa878265c6eada24c2543 (diff) | |
download | ffmpeg-420755dd282a913c2163d5589706d6a99a18d10f.tar.gz |
vfwcap: Include windows.h before vfw.h since the latter requires defines
from the former.
Patch by kemuri <kemuri9 at gmail dot com>
Originally committed as revision 21411 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/vfwcap.c')
-rw-r--r-- | libavdevice/vfwcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index 60ab169e76..4d07664094 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -20,8 +20,8 @@ */ #include "libavformat/avformat.h" -#include <vfw.h> #include <windows.h> +#include <vfw.h> //#define DEBUG_VFW |