]> git.sesse.net Git - vlc/blobdiff - modules/access_filter/timeshift.c
WinCE: build dump and timeshift modules
[vlc] / modules / access_filter / timeshift.c
index df486743e31a5916687944c42d72568a23006d41..0a124baa8587671d27b401251cfae5288cf54996 100644 (file)
@@ -40,7 +40,7 @@
 
 #include <unistd.h>
 
-#ifdef WIN32
+#if defined (WIN32) && !defined (UNDER_CE)
 #  include <direct.h>                                        /* _wgetcwd  */
 #endif
 
@@ -579,7 +579,7 @@ static char *GetTmpFilePath( access_t *p_access )
 
     if( psz_dir == NULL )
     {
-#ifdef WIN32
+#if defined (WIN32) && !defined (UNDER_CE)
         DWORD ret = GetTempPathW (0, NULL);
         wchar_t wdir[ret + 3]; // can at least old "C:" + nul
         const wchar_t *pwdir = wdir;