Commit 34faa8a2 authored by Pierre Ynard's avatar Pierre Ynard

WinCE: (don't) implement vlc_pipe()

Pipes are not supported on WinCE
parent b928541e
......@@ -257,7 +257,13 @@ int vlc_dup (int oldfd)
int vlc_pipe (int fds[2])
{
#ifdef UNDER_CE
(void) fds;
errno = ENOSYS;
return -1;
#else
return _pipe (fds, 32768, O_BINARY);
#endif
}
#include <vlc_network.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment