Commit 66d414cf authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4884 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent efdd9d24
......@@ -18,7 +18,9 @@
*/
#include "config.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/timeb.h>
#elif defined(CONFIG_OS2)
......
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