Skip to content
Snippets Groups Projects
Commit fdc7b570 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Skip all includes for WinCE, instead of falling through to the #else case.

Originally committed as revision 4884 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 39a64e30
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,9 @@ ...@@ -18,7 +18,9 @@
*/ */
#include "config.h" #include "config.h"
#include "avformat.h" #include "avformat.h"
#if defined(CONFIG_WIN32) && !defined(CONFIG_WINCE) #if defined(CONFIG_WINCE)
/* Skip includes on WinCE. */
#elif defined(CONFIG_WIN32)
#include <sys/types.h> #include <sys/types.h>
#include <sys/timeb.h> #include <sys/timeb.h>
#elif defined(CONFIG_OS2) #elif defined(CONFIG_OS2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment