Commit aaee4b60 authored by Geoffroy Couprie's avatar Geoffroy Couprie

WinCE: don't use features absent of Windows Mobile

parent 3bc41078
...@@ -116,11 +116,15 @@ static int Open( vlc_object_t *p_this ) ...@@ -116,11 +116,15 @@ static int Open( vlc_object_t *p_this )
if( !strcmp( p_access->psz_path, "-" ) ) if( !strcmp( p_access->psz_path, "-" ) )
{ {
#ifndef UNDER_CE
#ifdef WIN32 #ifdef WIN32
setmode (fileno (stdout), O_BINARY); setmode (fileno (stdout), O_BINARY);
#endif #endif
fd = dup (fileno (stdout)); fd = dup (fileno (stdout));
msg_Dbg( p_access, "using stdout" ); msg_Dbg( p_access, "using stdout" );
#else
#warning stdout is not supported on Windows Mobile, but may be used on Windows CE
#endif
} }
else else
{ {
......
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