1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-09 00:17:07 +00:00

MinGW compilation fix from a patch by Joey Parrish, approved by Sascha

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12532 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2004-06-03 13:30:55 +00:00
parent 19967c3f8f
commit 19cf857451

View File

@ -2,6 +2,10 @@
////////// and the "LIVE.COM Streaming Media" libraries:
extern "C" {
// on MinGW, we must include windows.h before the things it conflicts
#ifdef __MINGW32__ // with. they are each protected from
#include <windows.h> // windows.h, but not the other way around.
#endif
#include "demux_rtp.h"
#include "stheader.h"
}