summaryrefslogtreecommitdiff
path: root/libavformat/os_support.h
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-03-08 19:00:55 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-03-08 19:00:55 +0000
commit54b62496811914ec47f4369fa635d169f452fbb7 (patch)
treefd0cdf92640bae96aad94f234c55a621676d1728 /libavformat/os_support.h
parenta06ba2a18d64d5aa7574e03d65ab3ef209e915e5 (diff)
Define WIN32_LEAN_AND_MEAN before including windows.h to exclude
rarely-used header files. Originally committed as revision 12378 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/os_support.h')
-rw-r--r--libavformat/os_support.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h
index 285f039470..de29a18527 100644
--- a/libavformat/os_support.h
+++ b/libavformat/os_support.h
@@ -28,6 +28,7 @@
*/
#ifdef __MINGW32__
+# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# define usleep(t) Sleep((t) / 1000)
# include <fcntl.h>