Browse Source

os_support: Include io.h instead of direct.h on mingw32ce

Windows CE doesn't have neither mkdir nor _mkdir officially (only
CreateDirectoryW), but mingw32ce has compat wrappers with these names
(declared in io.h since direct.h is unavailable).

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.0
Martin Storsjö 12 years ago
parent
commit
7b07fab567
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavformat/os_support.h

+ 4
- 0
libavformat/os_support.h View File

@@ -39,7 +39,11 @@
#endif /* defined(__MINGW32__) && !defined(__MINGW32CE__) */

#ifdef _WIN32
#ifdef __MINGW32CE__
#include <io.h>
#else
#include <direct.h>
#endif
#define mkdir(a, b) _mkdir(a)
#else
#include <sys/stat.h>


Loading…
Cancel
Save