tests: attempt to get disabled streamheader test to compile on win32

Though it probably won't work, but then it's disabled.
This commit is contained in:
Tim-Philipp Müller 2012-09-12 09:48:47 +01:00
parent b04e61d8a4
commit 585bd3ee21

View file

@ -24,7 +24,14 @@
#include "config.h"
#endif
#include <glib.h>
#ifdef G_OS_WIN32
#include <io.h>
#define pipe(fds) _pipe(fds)
#else
#include <unistd.h>
#endif
#include <gio/gio.h>
#include <gst/check/gstcheck.h>