]> git.sesse.net Git - vlc/commitdiff
Remove WinCE
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 2 Sep 2012 09:14:28 +0000 (12:14 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 2 Sep 2012 09:22:01 +0000 (12:22 +0300)
49 files changed:
bin/Makefile.am
bin/winvlc.c
compat/fsync.c
configure.ac
extras/package/win32/package.mak
include/vlc_arrays.h
include/vlc_fs.h
include/vlc_interface.h
include/vlc_network.h
include/vlc_threads.h
modules/access/directory.c
modules/access/dv.c
modules/access/file.c
modules/access/mms/mmstu.c
modules/access/vdr.c
modules/access_output/file.c
modules/audio_output/waveout.c
modules/audio_output/windows_audio_common.h
modules/codec/mpeg_audio.c
modules/control/Modules.am
modules/gui/eject.c
modules/gui/skins2/src/theme_repository.cpp
modules/lua/Modules.am
modules/stream_filter/Modules.am
modules/stream_out/rtcp.c
modules/stream_out/rtsp.c
modules/text_renderer/Modules.am
modules/text_renderer/svg.c
modules/video_output/caca.c
modules/video_output/msw/common.c
modules/video_output/msw/common.h
modules/video_output/msw/events.c
share/Makefile.am
share/newres.h
src/Makefile.am
src/config/help.c
src/input/es_out_timeshift.c
src/input/vlm.c
src/misc/block.c
src/misc/update.c
src/network/httpd.c
src/network/udp.c
src/text/unicode.c
src/text/url.c
src/win32/dirs.c
src/win32/filesystem.c
src/win32/plugin.c
src/win32/specific.c
src/win32/thread.c

index 45b5464834123e74c7d1d87c401be8d9435df241..c96e81be2f37ec11105de3d41df469d11cf1ac28 100644 (file)
@@ -14,20 +14,15 @@ AM_CFLAGS = $(CFLAGS_vlc)
 
 
 if !HAVE_WIN32
-if !HAVE_WINCE
 bin_PROGRAMS += vlc-wrapper
 vlc_SOURCES = vlc.c override.c
 endif
-endif
 
 EXTRA_vlc_SOURCES = vlc.c winvlc.c
 if HAVE_WIN32
 vlc_SOURCES = winvlc.c
 noinst_DATA += vlc_win32_rc.rc
 endif
-if HAVE_WINCE
-vlc_SOURCES = winvlc.c
-endif
 
 vlc_wrapper_SOURCES = rootwrap.c
 vlc_wrapper_LDADD = $(SOCKET_LIBS)
index ff50a003f58b77be90862408476f3dc54c631b23..1f0af41ed2bbfff18a70031cfee25e9fb6c0389d 100644 (file)
 #include <windows.h>
 #include <shellapi.h>
 
-#if !defined(UNDER_CE)
-# ifndef _WIN32_IE
-#   define  _WIN32_IE 0x501
-# endif
-# include <fcntl.h>
-# include <io.h>
-# include <shlobj.h>
-# include <wininet.h>
-# define PSAPI_VERSION 1
-# include <psapi.h>
-# define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1
+#ifndef _WIN32_IE
+#  define  _WIN32_IE 0x501
+#endif
+#include <fcntl.h>
+#include <io.h>
+#include <shlobj.h>
+#include <wininet.h>
+#define PSAPI_VERSION 1
+#include <psapi.h>
+#define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1
 static void check_crashdump(void);
 LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo);
 static const wchar_t *crashdump_path;
-#endif
 
-#ifndef UNDER_CE
 static char *FromWide (const wchar_t *wide)
 {
     size_t len;
@@ -60,67 +57,13 @@ static char *FromWide (const wchar_t *wide)
         WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
     return out;
 }
-#else
-static int parse_cmdline (char *line, char ***argvp)
-{
-    char **argv = malloc (sizeof (char *));
-    int argc = 0;
-
-    while (*line != '\0')
-    {
-        char quote = 0;
-
-        /* Skips white spaces */
-        while (strchr ("\t ", *line))
-            line++;
-        if (!*line)
-            break;
-
-        /* Starts a new parameter */
-        argv = realloc (argv, (argc + 2) * sizeof (char *));
-        if (*line == '"')
-        {
-            quote = '"';
-            line++;
-        }
-        argv[argc++] = line;
-
-    more:
-            while (*line && !strchr ("\t ", *line))
-            line++;
-
-    if (line > argv[argc - 1] && line[-1] == quote)
-        /* End of quoted parameter */
-        line[-1] = 0;
-    else
-        if (*line && quote)
-    {
-        /* Space within a quote */
-        line++;
-        goto more;
-    }
-    else
-        /* End of unquoted parameter */
-        if (*line)
-            *line++ = 0;
-    }
-    argv[argc] = NULL;
-    *argvp = argv;
-    return argc;
-}
-#endif
 
 int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
-#ifndef UNDER_CE
                     LPSTR lpCmdLine,
-#else
-                    LPWSTR lpCmdLine,
-#endif
                     int nCmdShow )
 {
     int argc;
 
-#ifndef UNDER_CE
     /* VLC does not change the thread locale, so gettext/libintil will use the
      * user default locale as reference. */
     /* gettext versions 0.18-0.18.1 will use the Windows Vista locale name
@@ -198,15 +141,6 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
 
     _setmode( STDIN_FILENO, _O_BINARY ); /* Needed for pipes */
 
-#else /* UNDER_CE */
-    char **argv, psz_cmdline[wcslen(lpCmdLine) * 4];
-
-    WideCharToMultiByte( CP_UTF8, 0, lpCmdLine, -1,
-                         psz_cmdline, sizeof (psz_cmdline), NULL, NULL );
-
-    argc = parse_cmdline (psz_cmdline, &argv);
-#endif
-
     /* Initialize libvlc */
     libvlc_instance_t *vlc;
     vlc = libvlc_new (argc, (const char **)argv);
@@ -227,7 +161,6 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
     return 0;
 }
 
-#if !defined( UNDER_CE )
 /* Crashdumps handling */
 static void check_crashdump(void)
 {
@@ -402,4 +335,3 @@ LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
         exit( 1 );
     }
 }
-#endif
index e2e7b18e70611b16ceebf8c103a953bedfe13df0..8352d8018dd61b40478ed810ee4dbc0483fe1d57 100644 (file)
@@ -28,7 +28,7 @@
 
 int fsync (int fd)
 {
-#if defined(WIN32) && !defined(UNDER_CE)
+#if defined(WIN32)
     /* WinCE can use FlushFileBuffers() but it operates on file handles */
     return _commit (fd);
 #else
index 5e3a588a4fc2abfa4fa3313d9b9b81c91fc81803..8169fe821e623244aaff70412cc9ef0be62fb7ca 100644 (file)
@@ -209,10 +209,6 @@ case "${host_os}" in
     AC_DEFINE([_WIN32_IE], 0x0600, [Define to '0x0600' for IE 6.0 (and shell) APIs.])
 
     case "${host_os}" in
-      *wince* | *mingwce* | *mingw32ce*)
-        SYS=mingwce
-        dnl Sadly CeGCC still needs non-wince macros
-        ;;
       *mingw32*)
         SYS=mingw32
         ;;
@@ -251,12 +247,6 @@ case "${host_os}" in
         AC_SUBST(PROGRAMFILES)
 
     fi
-    if test "${SYS}" = "mingwce"; then
-        VLC_ADD_LIBS([libvlccore],[-lmmtimer])
-        AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
-        ac_default_prefix="`pwd`/_wince"
-        DESTDIR="`pwd`/_wince/"
-    fi
     ;;
   *nto*)
     SYS=nto
@@ -283,7 +273,6 @@ AM_CONDITIONAL(HAVE_LINUX,   test "${SYS}" = "linux")
 AM_CONDITIONAL(HAVE_OS2,     test "${SYS}" = "os2")
 AM_CONDITIONAL(HAVE_WIN32,   test "${SYS}" = "mingw32")
 AM_CONDITIONAL(HAVE_WIN64,   test "${HAVE_WIN64}" = "1")
-AM_CONDITIONAL(HAVE_WINCE,   test "${SYS}" = "mingwce")
 AM_CONDITIONAL(HAVE_SYMBIAN, test "${SYS}" = "symbian")
 
 dnl
@@ -422,7 +411,7 @@ dnl
 AM_ICONV
 
 dnl Check for broken versions of mingw-runtime compatability library
-AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
+AS_IF([test "${SYS}" = "mingw32"], [
     AC_MSG_CHECKING(for broken mingw-runtime)
     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
 #include <_mingw.h>
@@ -567,9 +556,6 @@ AC_SEARCH_LIBS(connect, [socket], [
   AS_IF([test "${SYS}" = "mingw32"], [
     SOCKET_LIBS="-lws2_32"
   ])
-  AS_IF([test "${SYS}" = "mingwce"], [
-    SOCKET_LIBS="-lws2"
-  ])
 ])
 
 AC_SEARCH_LIBS([getaddrinfo], [nsl], [
@@ -609,9 +595,7 @@ AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.
 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
   [AC_TRY_COMPILE(
     [#include <sys/types.h>
-     #if defined( UNDER_CE )
-     # include <winsock2.h>
-     #elif defined( WIN32 )
+     #if defined( WIN32 )
      # include <winsock2.h>
      #else
      # include <sys/socket.h>
@@ -658,7 +642,7 @@ AC_SEARCH_LIBS(dlopen, [dl svld], [
 VLC_RESTORE_FLAGS
 
 # Windows
-AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
+AS_IF([test "${SYS}" = "mingw32"], [
   LIBDL=""
   have_dynamic_objects="yes" #assume we can use shared objects
 ])
@@ -678,7 +662,7 @@ AC_SUBST(LIBDL)
 VLC_ADD_LIBS([lua],[$LIBDL])
 
 dnl Check for thread library
-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
+if test "${SYS}" != "mingw32"; then
 
   VLC_SAVE_FLAGS
   LIBS=""
@@ -702,7 +686,7 @@ if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
     dnl HP/UX port
     AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
   ])
-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
+fi # end "${SYS}" != "mingw32"
 
 dnl Check for headers
 AC_CHECK_HEADERS([search.h])
@@ -719,11 +703,11 @@ AC_CHECK_HEADERS([sys/mount.h], [], [],
     #include <sys/param.h>
   ])
 
-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
+if test "${SYS}" != "mingw32"; then
   AC_CHECK_HEADERS(machine/param.h sys/shm.h)
   AC_CHECK_HEADERS([linux/version.h linux/dccp.h scsi/scsi.h linux/magic.h])
   AC_CHECK_HEADERS(syslog.h mntent.h)
-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
+fi # end "${SYS}" != "mingw32"
 
 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.]) dnl ` (fix VIM syntax highlight
@@ -732,9 +716,9 @@ AC_CHECK_TYPE(ssize_t,, [
 ])
 
 dnl Check for threads library
-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
+if test "${SYS}" != "mingw32"; then
   AC_CHECK_HEADERS(pthread.h)
-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
+fi # end "${SYS}" != "mingw32"
 
 dnl It seems that autoconf detects pkg-config only during the first
 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
@@ -746,7 +730,7 @@ PKG_PROG_PKG_CONFIG()
 
 dnl On some OS we need static linking
 AS_IF([test -n "${PKG_CONFIG}" ],[
-    AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
+    AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
         PKG_CONFIG="${PKG_CONFIG} --static"
     ])
 ])
@@ -793,7 +777,7 @@ AC_ARG_ENABLE(dbus,
     [compile D-Bus message bus support (default enabled)])])
 case "${SYS}" in
     linux*|*bsd*)
-if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
+if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32"
 then
   dnl api stable dbus
   PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0.0],
@@ -896,7 +880,7 @@ AS_IF([test "${enable_coverage}" != "no"], [
   LDFLAGS="-lgcov ${LDFLAGS}"
 ])
 
-AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
+AS_IF([test "${SYS}" != "mingw32"], [
   VLC_SAVE_FLAGS
   CFLAGS="${CFLAGS} -fvisibility=hidden"
   CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
@@ -1076,13 +1060,9 @@ dnl Some plugins aren't useful on some platforms
 dnl
 if test "${SYS}" = "os2"; then
     VLC_ADD_PLUGIN([dynamicoverlay])
-elif test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
+elif test "${SYS}" != "mingw32"; then
     VLC_ADD_PLUGIN([dynamicoverlay access_shm])
-elif test "${SYS}" != "mingwce"; then
-    VLC_ADD_PLUGIN([access_smb dmo globalhotkeys])
-    VLC_ADD_LIBS([dmo],[-lole32 -luuid])
-fi
-if test "${SYS}" = "darwin"; then
+elif test "${SYS}" = "darwin"; then
     VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
 fi
 
@@ -1664,9 +1644,6 @@ You can get an updated one from http://www.live555.com/liveMedia .])
     AS_IF([test "${SYS}" = "mingw32"], [
       # add ws2_32 for closesocket, select, recv
       other_libs="$other_libs -lws2_32"
-    ], [test "${SYS}" = "mingwce"], [
-      # add ws2 for closesocket, select, recv
-      other_libs="$other_libs -lws2"
     ])
 
     dnl We need to check for pic because live555 don't provide shared libs
@@ -3011,7 +2988,7 @@ dnl  X C Bindings modules
 dnl
 AC_ARG_ENABLE(xcb,
   [  --enable-xcb            X11 support with XCB (default enabled)],, [
-  AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
+  AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
     enable_xcb="yes"
   ], [
     enable_xcb="no"
@@ -3214,7 +3191,7 @@ dnl
 dnl  Windows DirectX module
 dnl
 
-if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
+if test "${SYS}" = "mingw32"
 then
   VLC_ADD_PLUGIN([panoramix])
 fi
@@ -3222,7 +3199,7 @@ fi
 AC_ARG_ENABLE(directx,
   [AS_HELP_STRING([--enable-directx],
     [Microsoft DirectX support (default enabled on Windows)])],, [
-  AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
+  AS_IF([test "${SYS}" = "mingw32"], [
     enable_directx="yes"
   ], [
     enable_directx="no"
@@ -3260,7 +3237,7 @@ dnl  Windows Direct2D plugin
 dnl
 AC_ARG_ENABLE(direct2d,
   [  --enable-direct2d       Win7/VistaPU Direct2D support (default auto on Win32)],, [
-  AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
+  AS_IF([test "${SYS}" != "mingw32"], [
     enable_direct2d="no"
   ])
 ])
@@ -3283,11 +3260,6 @@ if test "${enable_wingdi}" != "no"; then
     VLC_ADD_PLUGIN([wingdi])
     VLC_ADD_LIBS([wingdi],[-lgdi32 -lole32 -luuid])
   fi
-  if test "${SYS}" = "mingwce"; then
-    VLC_ADD_PLUGIN([wingdi wingapi])
-    VLC_ADD_LIBS([wingdi],[-laygshell])
-    VLC_ADD_LIBS([wingapi],[-laygshell])
-  fi
 fi
 
 
@@ -3473,7 +3445,7 @@ dnl
 AC_ARG_ENABLE(oss,
   [AS_HELP_STRING([--enable-oss],
     [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
-  AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "mingwce" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
+  AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
     enable_oss="no"
   ])
 ])
@@ -3537,9 +3509,6 @@ if test "${enable_waveout}" != "no"; then
     VLC_ADD_PLUGIN([waveout])
     VLC_ADD_LIBS([waveout],[-lwinmm])
   fi
-  if test "${SYS}" = "mingwce"; then
-    VLC_ADD_PLUGIN([waveout])
-  fi
 fi
 
 dnl
@@ -3667,7 +3636,7 @@ AS_IF([test "${enable_qt}" != "no"], [
   VLC_RESTORE_FLAGS
   AC_LANG_POP([C++])
 
-  AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
+  AS_IF([test "${SYS}" = "mingw32"], [
       VLC_ADD_LIBS([qt4],[-lole32])
   ])
   AS_IF([test "${SYS}" = "darwin" ],[
@@ -4082,7 +4051,7 @@ AC_ARG_WITH(kde-solid,
   AS_HELP_STRING([--with-kde-solid=PATH],
                  [KDE Solid actions directory (auto)]),, [
 
-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" ; then
+if test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" ; then
   with_kde_solid="yes"
 fi
 ])
index a0d2edafb6c03392dd943a378d2aa469deff2ae7..7bcab42298da4ab08140fe669d5db6b7eb7b5583 100644 (file)
@@ -10,14 +10,9 @@ win32_xpi_destdir=$(abs_top_builddir)/vlc-plugin-$(VERSION)
 7Z_OPTS=-t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on
 
 
-if HAVE_WINCE
-build-npapi:
-       touch $@
-else
 if HAVE_WIN32
 include extras/package/npapi.am
 endif
-endif
 
 if HAVE_WIN64
 WINVERSION=vlc-$(VERSION)-win64
@@ -67,12 +62,10 @@ if BUILD_OSDMENU
        done
 endif
 
-if !HAVE_WINCE
        cp "$(top_builddir)/npapi-vlc/activex/axvlc.dll.manifest" "$(win32_destdir)/"
        cp "$(top_builddir)/npapi-vlc/installed/lib/axvlc.dll" "$(win32_destdir)/"
        cp "$(top_builddir)/npapi-vlc/npapi/npvlc.dll.manifest" "$(win32_destdir)/"
        cp "$(top_builddir)/npapi-vlc/installed/lib/npvlc.dll" "$(win32_destdir)/"
-endif
 
 # Compiler shared DLLs, when using compilers built with --enable-shared
 # If gcc_s_sjlj/stdc++-6 DLLs exist, our C++ modules were linked to them
@@ -84,13 +77,11 @@ endif
        cp -r $(prefix)/include "$(win32_destdir)/sdk"
        cp -r $(prefix)/lib/pkgconfig "$(win32_destdir)/sdk/lib"
        cd $(prefix)/lib && cp -rv libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la "$(win32_destdir)/sdk/lib/"
-if !HAVE_WINCE
        $(DLLTOOL) -D libvlc.dll -l "$(win32_destdir)/sdk/lib/libvlc.lib" -d "$(top_builddir)/lib/.libs/libvlc.dll.def" "$(prefix)/bin/libvlc.dll"
        $(DLLTOOL) -D libvlccore.dll -l "$(win32_destdir)/sdk/lib/libvlccore.lib" -d "$(top_builddir)/src/.libs/libvlccore.dll.def" "$(prefix)/bin/libvlccore.dll"
 
        mkdir -p "$(win32_destdir)/sdk/activex/"
        cd $(top_builddir)/npapi-vlc && cp activex/README.TXT share/test.html $(win32_destdir)/sdk/activex/
-endif
 
 # Convert to DOS line endings
        find $(win32_destdir) -type f \( -name "*xml" -or -name "*html" -or -name '*js' -or -name '*css' -or -name '*hosts' -or -iname '*txt' -or -name '*.cfg' -or -name '*.lua' \) -exec $(U2D) {} \;
index c06136de984a835d1e9dd0a332d372b8778ec657..b7b631051ffb62375a352fda90c54cb5e19d14b7 100644 (file)
@@ -40,7 +40,7 @@ static inline void *realloc_down( void *ptr, size_t size )
 /**
  * Simple dynamic array handling. Array is realloced at each insert/removal
  */
-#if defined( _MSC_VER ) && _MSC_VER < 1300 && !defined( UNDER_CE )
+#if defined( _MSC_VER ) && _MSC_VER < 1300
 #   define VLCCVP (void**) /* Work-around for broken compiler */
 #else
 #   define VLCCVP
index 669420cc7f09afc2a5cab894c3e46c8ab5b720ba..c37fa9ade9ac56eb368bdd96b7c03e894d8fcd63 100644 (file)
@@ -65,15 +65,13 @@ static inline void vlc_rewinddir( DIR *dir )
 # define rewinddir vlc_rewinddir
 
 # include <sys/stat.h>
-# ifndef UNDER_CE
-#  ifndef stat
-#   define stat _stati64
-#  endif
-#  ifndef fstat
-#   define fstat _fstati64
-#  endif
-# define lseek _lseeki64
+# ifndef stat
+#  define stat _stati64
 # endif
+# ifndef fstat
+#  define fstat _fstati64
+# endif
+#define lseek _lseeki64
 #endif
 
 #ifdef __ANDROID__
index cc9ac27f26eaf0adc4de2bb46199c04b135c2b49..fca1c9f3d049bfe5b4ec6e434edec18921317534 100644 (file)
@@ -126,7 +126,7 @@ VLC_API void vlc_Unsubscribe(msg_subscription_t *);
 
 /*@}*/
 
-#if defined( WIN32 ) && !defined( UNDER_CE )
+#if defined( WIN32 )
 #    define CONSOLE_INTRO_MSG \
          if( !getenv( "PWD" ) ) /* detect Cygwin shell or Wine */ \
          { \
index c573f72d0be458ee912068c69971f167a02334bf..b5dc66ef2b0c1b421413fbe2115419df5b1ef1f0 100644 (file)
  */
 
 #if defined( WIN32 )
-#   if !defined(UNDER_CE)
-#       define _NO_OLDNAMES 1
-#       include <io.h>
-#   endif
+#   define _NO_OLDNAMES 1
+#   include <io.h>
 #   include <winsock2.h>
 #   include <ws2tcpip.h>
 #   define net_errno (WSAGetLastError())
index 2a1d2559d46c577af39005b2cdac262cd0c71f35..7fcbf25064be9be76ab2b7bf4b6a8c400db9a4db 100644 (file)
@@ -34,8 +34,7 @@
  *
  */
 
-#if defined( UNDER_CE )
-#elif defined( WIN32 )
+#if defined( WIN32 )
 #   include <process.h>                                         /* Win32 API */
 
 #elif defined( __OS2__ )                                        /* OS/2 API  */
@@ -456,7 +455,7 @@ static inline void vlc_spin_destroy (vlc_spinlock_t *spin)
     pthread_spin_destroy (spin);
 }
 
-#elif defined (WIN32) && !defined (UNDER_CE)
+#elif defined (WIN32)
 
 typedef CRITICAL_SECTION vlc_spinlock_t;
 
index 2ae9b3bf8cbb136c4b97f9d0abeec4019de72e4a..194439abd7802fbd9c97ed02b4dc18c9f8332ccd 100644 (file)
@@ -40,7 +40,7 @@
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
 #   include <fcntl.h>
-#elif defined( WIN32 ) && !defined( UNDER_CE )
+#elif defined( WIN32 )
 #   include <io.h>
 #endif
 
index 67ecc30c274762d26359c1114374e7e406020abf..707061273810628ac46446b30e74b0ebd5c9baa4 100644 (file)
@@ -36,7 +36,7 @@
 #include <sys/types.h>
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
-#elif defined( WIN32 ) && !defined( UNDER_CE )
+#elif defined( WIN32 )
 #   include <io.h>
 #endif
 
index 972e7eec03a79d75366cf9ec5d374cac186da39c..ea9ddbdd2aa715be028f69d734ae4cb4ce7b6785 100644 (file)
@@ -114,7 +114,7 @@ static bool IsRemote (int fd)
 #else /* WIN32 || __OS2__ */
 static bool IsRemote (const char *path)
 {
-# if !defined(UNDER_CE) && !defined(__OS2__)
+# if !defined(__OS2__)
     wchar_t *wpath = ToWide (path);
     bool is_remote = (wpath != NULL && PathIsNetworkPathW (wpath));
     free (wpath);
index ecf32036267e3556bb4626f11cfa6aaaac27002d..972532babec927377f2151c8b5e9e1069760610d 100644 (file)
@@ -1023,10 +1023,6 @@ static int mms_CommandSend( access_t *p_access, int i_command,
 
 static int NetFillBuffer( access_t *p_access )
 {
-#ifdef UNDER_CE
-    return -1;
-
-#else
     access_sys_t    *p_sys = p_access->p_sys;
     int             i_ret;
     struct pollfd   ufd[2];
@@ -1143,7 +1139,6 @@ static int NetFillBuffer( access_t *p_access )
     if( i_udp_read > 0 ) p_sys->i_buffer_udp += i_udp_read;
 
     return i_tcp_read + i_udp_read;
-#endif
 }
 
 static int  mms_ParseCommand( access_t *p_access,
index 98a4122febaed7d1e64281c30e14bb0123de361f..6c6f90b65216669978d7274eef01b44444210365 100644 (file)
@@ -50,7 +50,7 @@ See http://www.vdr-wiki.de/ and http://www.tvdr.de/ for more information.
 #include <fcntl.h>
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
-#elif defined( WIN32 ) && !defined( UNDER_CE )
+#elif defined( WIN32 )
 #   include <io.h>
 #endif
 
index cfa96860a924473c114c3fd5b591b6caf5b5c237..b45fa1b9f7e9220fb30c10491f56ad43112ce2cd 100644 (file)
@@ -136,7 +136,6 @@ static int Open( vlc_object_t *p_this )
             return VLC_EGENERIC;
         }
     }
-#ifndef UNDER_CE
     else
     if( !strcmp( p_access->psz_path, "-" ) )
     {
@@ -151,7 +150,6 @@ static int Open( vlc_object_t *p_this )
         }
         msg_Dbg( p_access, "using stdout" );
     }
-#endif
     else
     {
         char *psz_tmp = str_format_time( p_access->psz_path );
index bf6a8911065f5111fb6c01e6776f4f6953e2e822..7c7b545878215f361afe675d3cb577b5ee64d279 100644 (file)
@@ -296,7 +296,6 @@ static int Open( vlc_object_t *p_this )
 
         aout_PacketInit( p_aout, &p_aout->sys->packet, FRAME_SIZE );
 
-#ifndef UNDER_CE
         /* Check for hardware volume support */
         if( waveOutGetDevCaps( (UINT_PTR)p_aout->sys->h_waveout,
                                &wocaps, sizeof(wocaps) ) == MMSYSERR_NOERROR
@@ -308,7 +307,6 @@ static int Open( vlc_object_t *p_this )
             p_aout->sys->mute = false;
         }
         else
-#endif
             aout_SoftVolumeInit( p_aout );
     }
 
@@ -1000,7 +998,6 @@ static void* WaveOutThread( void *data )
     return NULL;
 }
 
-#ifndef UNDER_CE
 static int VolumeSet( audio_output_t *aout, float volume )
 {
     aout_sys_t *sys = aout->sys;
@@ -1030,7 +1027,6 @@ static int MuteSet( audio_output_t * p_aout, bool mute )
     waveOutSetVolume( hwo, vol | (vol << 16) );
     return 0;
 }
-#endif
 
 /*
   reload the configuration drop down list, of the Audio Devices
index c8589ec5ae71b7f65e512e5f317553a8dc47db53..9b4794785dae94033d028722ececdd4f372d46a1 100644 (file)
@@ -71,9 +71,7 @@ typedef struct {
 } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE;
 #endif
 
-#ifndef UNDER_CE
-#   include <dsound.h>
-#endif
+#include <dsound.h>
 
 #ifndef SPEAKER_FRONT_LEFT
 #   define SPEAKER_FRONT_LEFT             0x1
index daa0bfb7cc2cdea5feb62370de39cec677659199..1ec26afb914cc0daf6f41dced848975788644e20 100644 (file)
@@ -107,11 +107,7 @@ vlc_module_begin ()
     set_description( N_("MPEG audio layer I/II/III decoder") )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_ACODEC )
-#if defined(UNDER_CE)
-   set_capability( "decoder", 5 )
-#else
     set_capability( "decoder", 100 )
-#endif
     set_callbacks( OpenDecoder, CloseDecoder )
 
     add_submodule ()
index f9bad1d7ccc0d41ecb969d55378a203ec39b88d4..d0f09e9262c50cc751f70d0c975992cf936b7a49 100644 (file)
@@ -20,9 +20,7 @@ libvlc_LTLIBRARIES += \
        libdummy_plugin.la \
        libgestures_plugin.la \
        libnetsync_plugin.la \
-       libhotkeys_plugin.la
-if !HAVE_WINCE
-libvlc_LTLIBRARIES += \
+       libhotkeys_plugin.la \
        liboldrc_plugin.la
 if !HAVE_WIN32
 libvlc_LTLIBRARIES += \
@@ -30,5 +28,4 @@ libvlc_LTLIBRARIES += \
 else
 libvlc_LTLIBRARIES += \
        libntservice_plugin.la
-endif
 endif  
index 8e9ffb9ab3f30f4c240a35e6d910fda5a5d15680..80ba7f1ced30618b57164adee93c9bcad2232e65 100644 (file)
@@ -35,7 +35,7 @@
 #include <vlc_common.h>
 #include <vlc_fs.h>
 
-#if defined( WIN32 ) && !defined( UNDER_CE )
+#if defined( WIN32 )
 #   include <mmsystem.h>
 #elif defined(__linux__)
 #   include <sys/types.h>
index 51cf89fa5d985fcde8113b9893f06352df15363c..2f2a640566d7748d624c50604caf1bac545b8463 100644 (file)
@@ -27,7 +27,7 @@
 #include "../commands/cmd_dialogs.hpp"
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
-#elif defined( WIN32 ) && !defined( UNDER_CE )
+#elif defined( WIN32 )
 #   include <direct.h>
 #endif
 
index 157d54b48e7a9e9d7b0ab51ef0ad449f9a875356..4a4dc70be1b0de6bc7ef6de9e5b52a1c97113464 100644 (file)
@@ -38,10 +38,6 @@ SOURCES_lua = \
 
 if HAVE_WIN32
 SOURCES_lua += libs/win.c
-else
-if HAVE_WINCE
-SOURCES_lua += libs/win.c
-endif
 endif
 
 libvlc_LTLIBRARIES += liblua_plugin.la
index 78efb7d946f21de817902f81405aeb7d9782895c..c258add8b9d32389e323c91504f60783bbca7cee 100644 (file)
@@ -16,7 +16,5 @@ libvlc_LTLIBRARIES += libstream_filter_httplive_plugin.la
 endif
 
 if !HAVE_WIN32
-if !HAVE_WINCE
 libvlc_LTLIBRARIES += libdecomp_plugin.la
 endif
-endif
index 92c31549266cba77fc078236b5761e3e0e0cf612..fdd04c97633c43c35ca2ec11cf971680be945046 100644 (file)
@@ -84,9 +84,6 @@ rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto,
         /* RTP/RTCP mux: duplicate the socket */
 #ifndef WIN32
         fd = vlc_dup (rtp_fd);
-#elif defined(UNDER_CE)
- #warning Muxed RTP/RTCP unimplemented!
-        fd = -1;
 #else
         WSAPROTOCOL_INFO info;
         WSADuplicateSocket (rtp_fd, GetCurrentProcessId (), &info);
index a49bd8af62cd1ba872c1650998a4c1f531b7c337..cece5bc85e94565deb5b2a66f52a1b5b0e30e019 100644 (file)
@@ -422,7 +422,7 @@ static void RtspClientAlive( rtsp_session_t *session )
 static int dup_socket(int oldfd)
 {
     int newfd;
-#if !defined(WIN32) || defined(UNDER_CE)
+#ifndef WIN32
     newfd = vlc_dup(oldfd);
 #else
     WSAPROTOCOL_INFO info;
index cac7a2777ef63f575a75499d58fdf52919abb457..e7a68c1e0b0c3008f7e8a7892681aee9fed132b6 100644 (file)
@@ -5,6 +5,3 @@ SOURCES_tdummy = tdummy.c
 SOURCES_win32text = win32text.c
 
 libvlc_LTLIBRARIES += libtdummy_plugin.la
-if HAVE_WINCE
-libvlc_LTLIBRARIES += libwin32text_plugin.la
-endif
index 1f507aac7aa7592fbd11794b47fb27f3e49dcc1a..3c14955ed5d2cad88e8967742b3020a18a4fc896 100644 (file)
@@ -38,7 +38,7 @@
 
 #ifdef HAVE_UNISTD_H
 #    include <unistd.h>
-#elif defined( WIN32 ) && !defined( UNDER_CE )
+#elif defined( WIN32 )
 #   include <io.h>
 #endif
 
index a61edf85d9f33628ea8b939bfcea44d83b693022..482974ae7b7e718d1470764b6935f0dd52184c37 100644 (file)
@@ -95,7 +95,7 @@ static int Open(vlc_object_t *object)
 # endif
 #endif
 
-#if defined(WIN32) && !defined(UNDER_CE)
+#if defined(WIN32)
     CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
     SMALL_RECT rect;
     COORD coord;
@@ -216,7 +216,7 @@ error:
 
         free(sys);
     }
-#if defined(WIN32) && !defined(UNDER_CE)
+#if defined(WIN32)
     FreeConsole();
 #endif
     return VLC_EGENERIC;
@@ -237,7 +237,7 @@ static void Close(vlc_object_t *object)
     caca_free_display(sys->dp);
     cucul_free_canvas(sys->cv);
 
-#if defined(WIN32) && !defined(UNDER_CE)
+#if defined(WIN32)
     FreeConsole();
 #endif
 
index fbc8f4445f6377a3a4db044f77b964cc86bbd00b..078892e88e3a7fc44fdfd560ad9cbc7b6f41521d 100644 (file)
 
 #include "common.h"
 
-#ifndef UNDER_CE
 #include <vlc_windows_interfaces.h>
-#endif
-
-#ifdef UNDER_CE
-#include <aygshell.h>
-    //WINSHELLAPI BOOL WINAPI SHFullScreen(HWND hwndRequester, DWORD dwState);
-#endif
 
 static void CommonChangeThumbnailClip(vout_display_t *, bool show);
 static int CommonControlSetFullscreen(vout_display_t *, bool is_fullscreen);
 
-#if !defined(UNDER_CE)
 static void DisableScreensaver(vout_display_t *);
 static void RestoreScreensaver(vout_display_t *);
-#endif
 
 /* */
 int CommonInit(vout_display_t *vd)
@@ -124,10 +115,8 @@ int CommonInit(vout_display_t *vd)
     }
 
     /* Why not with glwin32 */
-#if !defined(UNDER_CE)
     var_Create(vd, "disable-screensaver", VLC_VAR_BOOL | VLC_VAR_DOINHERIT);
     DisableScreensaver (vd);
-#endif
 
     return VLC_SUCCESS;
 }
@@ -143,9 +132,7 @@ void CommonClean(vout_display_t *vd)
         EventThreadDestroy(sys->event);
     }
 
-#if !defined(UNDER_CE)
     RestoreScreensaver(vd);
-#endif
 }
 
 void CommonManage(vout_display_t *vd)
@@ -279,7 +266,6 @@ void AlignRect(RECT *r, int align_boundary, int align_size)
 /* */
 static void CommonChangeThumbnailClip(vout_display_t *vd, bool show)
 {
-#ifndef UNDER_CE
     vout_display_sys_t *sys = vd->sys;
 
     /* Windows 7 taskbar thumbnail code */
@@ -317,7 +303,6 @@ static void CommonChangeThumbnailClip(vout_display_t *vd, bool show)
         taskbl->lpVtbl->Release(taskbl);
     }
     CoUninitialize();
-#endif
 }
 
 /*****************************************************************************
@@ -527,15 +512,6 @@ static int CommonControlSetFullscreen(vout_display_t *vd, bool is_fullscreen)
         SetWindowLong(hwnd, GWL_STYLE, WS_CLIPCHILDREN | WS_VISIBLE);
 
         if (sys->hparent) {
-#ifdef UNDER_CE
-            POINT point = {0,0};
-            RECT rect;
-            ClientToScreen(sys->hwnd, &point);
-            GetClientRect(sys->hwnd, &rect);
-            SetWindowPos(hwnd, 0, point.x, point.y,
-                         rect.right, rect.bottom,
-                         SWP_NOZORDER|SWP_FRAMECHANGED);
-#else
             /* Retrieve current window position so fullscreen will happen
             *on the right screen */
             HMONITOR hmon = MonitorFromWindow(sys->hparent,
@@ -549,7 +525,6 @@ static int CommonControlSetFullscreen(vout_display_t *vd, bool is_fullscreen)
                              mi.rcMonitor.right - mi.rcMonitor.left,
                              mi.rcMonitor.bottom - mi.rcMonitor.top,
                              SWP_NOZORDER|SWP_FRAMECHANGED);
-#endif
         } else {
             /* Maximize non embedded window */
             ShowWindow(hwnd, SW_SHOWMAXIMIZED);
@@ -564,11 +539,7 @@ static int CommonControlSetFullscreen(vout_display_t *vd, bool is_fullscreen)
                          rect.right, rect.bottom,
                          SWP_NOZORDER|SWP_FRAMECHANGED);
 
-#ifdef UNDER_CE
-            HWND topLevelParent = GetParent(sys->hparent);
-#else
             HWND topLevelParent = GetAncestor(sys->hparent, GA_ROOT);
-#endif
             ShowWindow(topLevelParent, SW_HIDE);
         }
         SetForegroundWindow(hwnd);
@@ -586,11 +557,7 @@ static int CommonControlSetFullscreen(vout_display_t *vd, bool is_fullscreen)
                          rect.right, rect.bottom,
                          SWP_NOZORDER|SWP_FRAMECHANGED);
 
-#ifdef UNDER_CE
-            HWND topLevelParent = GetParent(sys->hparent);
-#else
             HWND topLevelParent = GetAncestor(sys->hparent, GA_ROOT);
-#endif
             ShowWindow(topLevelParent, SW_SHOW);
             SetForegroundWindow(sys->hparent);
             ShowWindow(hwnd, SW_HIDE);
@@ -688,7 +655,6 @@ int CommonControl(vout_display_t *vd, int query, va_list args)
     }
 }
 
-#if !defined(UNDER_CE)
 static void DisableScreensaver(vout_display_t *vd)
 {
     vout_display_sys_t *sys = vd->sys;
@@ -731,5 +697,3 @@ static void RestoreScreensaver(vout_display_t *vd)
                              sys->i_spi_screensaveactive, NULL, 0);
     }
 }
-#endif
-
index cfa3323769f9435948522fca2b6095f81a8058e6..90fb966aaa33e7e997436af5bf1400261c76ba86 100644 (file)
@@ -93,13 +93,9 @@ struct vout_display_sys_t
     bool is_first_display;
     bool is_on_top;
 
-#ifndef UNDER_CE
-
     /* screensaver system settings to be restored when vout is closed */
     UINT i_spi_screensaveactive;
 
-#endif
-
     /* Coordinates of src and dest images (used when blitting to display) */
     RECT         rect_src;
     RECT         rect_src_clipped;
@@ -260,58 +256,3 @@ void AlignRect(RECT *, int align_boundary, int align_size);
 #define DX_POSITION_CHANGE 0x1000
 #define DX_WALLPAPER_CHANGE 0x2000
 #define DX_DESKTOP_CHANGE 0x4000
-
-/*****************************************************************************
- * WinCE helpers
- *****************************************************************************/
-#ifdef UNDER_CE
-
-#define AdjustWindowRect(a,b,c) AdjustWindowRectEx(a,b,c,0)
-
-#ifndef GCL_HBRBACKGROUND
-#   define GCL_HBRBACKGROUND (-10)
-#endif
-
-//#define FindWindowEx(a,b,c,d) 0
-
-#define GetWindowPlacement(a,b)
-#define SetWindowPlacement(a,b)
-/*typedef struct _WINDOWPLACEMENT {
-    UINT length;
-    UINT flags;
-    UINT showCmd;
-    POINT ptMinPosition;
-    POINT ptMaxPosition;
-    RECT rcNormalPosition;
-} WINDOWPLACEMENT;*/
-
-#ifndef WM_NCMOUSEMOVE
-#   define WM_NCMOUSEMOVE 160
-#endif
-#ifndef CS_OWNDC
-#   define CS_OWNDC 32
-#endif
-#ifndef SC_SCREENSAVE
-#   define SC_SCREENSAVE 0xF140
-#endif
-#ifndef SC_MONITORPOWER
-#   define SC_MONITORPOWER 0xF170
-#endif
-#ifndef WM_NCPAINT
-#   define WM_NCPAINT 133
-#endif
-#ifndef WS_OVERLAPPEDWINDOW
-#   define WS_OVERLAPPEDWINDOW 0xcf0000
-#endif
-#ifndef WS_EX_NOPARENTNOTIFY
-#   define WS_EX_NOPARENTNOTIFY 4
-#endif
-#ifndef WS_EX_APPWINDOW
-#define WS_EX_APPWINDOW 0x40000
-#endif
-
-//#define SetWindowLongPtr SetWindowLong
-//#define GetWindowLongPtr GetWindowLong
-//#define GWLP_USERDATA GWL_USERDATA
-
-#endif //UNDER_CE
index c1589542c300e062cc517ff4b98436de9ed69c69..befe980b0527889b951d325e3139cb3d839c016d 100644 (file)
 #include <vlc_keys.h>
 #include "common.h"
 
-#ifdef UNDER_CE
-#include <aygshell.h>
-    //WINSHELLAPI BOOL WINAPI SHFullScreen(HWND hwndRequester, DWORD dwState);
-
-UINT GetMenuState(HMENU hMenu, UINT id, UINT flags)
-{
-    MENUITEMINFO info;
-    memset(&info, 0, sizeof(info));
-    info.cbSize = sizeof(info);
-    info.fMask = MIIM_STATE;
-    if (!GetMenuItemInfo(hMenu, id, (flags & MF_BYPOSITION) != 0, &info))
-        return -1;
-    /* XXX Submenu handling is missing... */
-    return info.fState;
-}
-#endif
-
-/*#if defined(UNDER_CE) && !defined(__PLUGIN__) --FIXME*/
-/*#   define SHFS_SHOWSIPBUTTON 0x0004
-#   define SHFS_HIDESIPBUTTON 0x0008
-#   define MENU_HEIGHT 26
-    BOOL SHFullScreen(HWND hwndRequester, DWORD dwState);
-#endif*/
-
 /*****************************************************************************
  * Local prototypes.
  *****************************************************************************/
@@ -175,7 +151,6 @@ static void UpdateCursor( event_thread_t *p_event, bool b_show )
     }
 }
 
-#ifndef UNDER_CE
 static HCURSOR EmptyCursor( HINSTANCE instance )
 {
     const int cw = GetSystemMetrics(SM_CXCURSOR);
@@ -195,7 +170,6 @@ static HCURSOR EmptyCursor( HINSTANCE instance )
 
     return cursor;
 }
-#endif
 
 static void MousePressed( event_thread_t *p_event, HWND hwnd, unsigned button )
 {
@@ -250,10 +224,8 @@ static void *EventThread( void *p_this )
         return NULL;
     }
 
-#ifndef UNDER_CE
     /* Prevent monitor from powering off */
     SetThreadExecutionState( ES_DISPLAY_REQUIRED | ES_SYSTEM_REQUIRED | ES_CONTINUOUS );
-#endif
 
     /* Main loop */
     /* GetMessage will sleep if there's no message in the queue */
@@ -554,18 +526,14 @@ static int DirectXCreateWindow( event_thread_t *p_event )
     }
     #endif
     p_event->cursor_arrow = LoadCursor(NULL, IDC_ARROW);
-#ifndef UNDER_CE
     p_event->cursor_empty = EmptyCursor(hInstance);
-#endif
 
     /* Get the Icon from the main app */
     p_event->vlc_icon = NULL;
-#ifndef UNDER_CE
     if( GetModuleFileName( NULL, vlc_path, MAX_PATH ) )
     {
         p_event->vlc_icon = ExtractIcon( hInstance, vlc_path, 0 );
     }
-#endif
 
     /* Fill in the window class structure */
     wc.style         = CS_OWNDC|CS_DBLCLKS;          /* style: dbl click */
@@ -746,9 +714,7 @@ static void DirectXCloseWindow( event_thread_t *p_event )
     if( p_event->vlc_icon )
         DestroyIcon( p_event->vlc_icon );
 
-#ifndef UNDER_CE
     DestroyCursor( p_event->cursor_empty );
-#endif
 }
 
 /*****************************************************************************
@@ -787,7 +753,6 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
     }
     vout_display_t *vd = p_event->vd;
 
-#ifndef UNDER_CE
     /* Catch the screensaver and the monitor turn-off */
     if( message == WM_SYSCOMMAND &&
         ( (wParam & 0xFFF0) == SC_SCREENSAVE || (wParam & 0xFFF0) == SC_MONITORPOWER ) )
@@ -795,7 +760,6 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
         //if( vd ) msg_Dbg( vd, "WinProc WM_SYSCOMMAND screensaver" );
         return 0; /* this stops them from happening */
     }
-#endif
 #if 0
     if( message == WM_SETCURSOR )
     {
@@ -908,44 +872,12 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
     case WM_KILLFOCUS:
 #ifdef MODULE_NAME_IS_wingapi
         GXSuspend();
-#endif
-#ifdef UNDER_CE
-        if( hwnd == p_event->hfswnd )
-        {
-            HWND htbar = FindWindow( _T("HHTaskbar"), NULL );
-            ShowWindow( htbar, SW_SHOW );
-        }
-
-        if( !p_event->hparent ||
-            hwnd == p_event->hfswnd )
-        {
-            SHFullScreen( hwnd, SHFS_SHOWSIPBUTTON );
-        }
 #endif
         return 0;
 
     case WM_SETFOCUS:
 #ifdef MODULE_NAME_IS_wingapi
         GXResume();
-#endif
-#ifdef UNDER_CE
-        /* FIXME vd->cfg is not lock[ed/able] */
-#warning "FIXME: race condition"
-        if( p_event->hparent &&
-            hwnd != p_event->hfswnd && vd->cfg->is_fullscreen )
-            vout_display_SendEventFullscreen(vd, false);
-
-        if( hwnd == p_event->hfswnd )
-        {
-            HWND htbar = FindWindow( _T("HHTaskbar"), NULL );
-            ShowWindow( htbar, SW_HIDE );
-        }
-
-        if( !p_event->hparent ||
-            hwnd == p_event->hfswnd )
-        {
-            SHFullScreen( hwnd, SHFS_HIDESIPBUTTON );
-        }
 #endif
         return 0;
 
index c923bb48ff9773713d07e2eeeaf8fe04a3a42db1..0c6b76f4eb8bd34fcf738eee89d3b1a05aec967b 100644 (file)
@@ -4,10 +4,8 @@ EXTRA_DIST =
 
 appdatadir = $(datadir)/applications
 if !HAVE_WIN32
-if !HAVE_WINCE
 appdata_DATA = vlc.desktop
 endif
-endif
 EXTRA_DIST += vlc.desktop.in
 CLEANFILES += $(appdata_DATA)
 
@@ -24,7 +22,6 @@ icons128dir = $(iconsdatadir)/128x128/apps
 icons256dir = $(iconsdatadir)/256x256/apps
 
 if !HAVE_WIN32
-if !HAVE_WINCE
 dist_vlcdata_DATA = icons/vlc.ico
 dist_icons16_DATA = icons/16x16/vlc.png icons/16x16/vlc.xpm
 dist_icons32_DATA = icons/32x32/vlc.png icons/32x32/vlc.xpm \
@@ -39,7 +36,6 @@ nobase_dist_vlcdata_SCRIPTS = \
        utils/video-vlc-default.sh \
        $(NULL)
 endif
-endif
 
 EXTRA_DIST += \
        $(skins2_default_vlt_FILES) \
index f46067f469ffdde5cb52b1e21b26c52cefc275a0..a80948a1129a3182d806bcce5290aa6117811961 100644 (file)
@@ -1,10 +1,6 @@
 #ifndef __NEWRES_H__
 #define __NEWRES_H__
 
-#if !defined(UNDER_CE)
-    #define UNDER_CE _WIN32_WCE
-#endif
-
 #if defined(_WIN32_WCE)
     #if !defined(WCEOLE_ENABLE_DIALOGEX)
         #define DIALOGEX DIALOG DISCARDABLE
index ff25cff7054279490fb302eacf9b027bf6bde3cc..afb35ada900dee1c6eb4be838e45d8496eeb7a4f 100644 (file)
@@ -212,9 +212,6 @@ else
 if HAVE_WIN32
 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
 else
-if HAVE_WINCE
-libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
-else
 if HAVE_SYMBIAN
 #libvlccore_la_SOURCES += $(SOURCES_libvlc_symbian)
 else
@@ -227,7 +224,6 @@ endif
 endif
 endif
 endif
-endif
 if BUILD_HTTPD
 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
 endif
index 2f0607dd3c44a0061c63dc9c88c1b641dfed5438..89c5b8dbf6e6b51423cc519ce1ab95b18bffcbe3 100644 (file)
@@ -34,7 +34,7 @@
 #include "config/configuration.h"
 #include "libvlc.h"
 
-#if defined( WIN32 ) && !defined( UNDER_CE )
+#if defined( WIN32 )
 static void ShowConsole (void);
 static void PauseConsole (void);
 #else
@@ -797,7 +797,7 @@ static void Version( void )
     PauseConsole();
 }
 
-#if defined (WIN32) && !defined (UNDER_CE)
+#if defined (WIN32)
 /*****************************************************************************
  * ShowConsole: On Win32, create an output console for debug messages
  *****************************************************************************
@@ -862,7 +862,7 @@ static int ConsoleWidth( void )
             i_width = 80;
         pclose( file );
     }
-#elif !defined (UNDER_CE)
+#else
     CONSOLE_SCREEN_BUFFER_INFO buf;
 
     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
index 9a8b82d3be79d26f90ff4b49da9799a5048bb5aa..4f5db4fbd6eb431841ebec0edb3f0accfdf2b09f 100644 (file)
@@ -31,7 +31,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <assert.h>
-#if defined (WIN32) && !defined (UNDER_CE)
+#if defined (WIN32)
 #  include <direct.h>
 #endif
 #include <sys/stat.h>
@@ -1552,7 +1552,7 @@ static char *GetTmpPath( char *psz_path )
     free( psz_path );
 
     /* Create a suitable path */
-#if defined (WIN32) && !defined (UNDER_CE)
+#if defined (WIN32)
     const DWORD dwCount = GetTempPathW( 0, NULL );
     wchar_t *psw_path = calloc( dwCount + 1, sizeof(wchar_t) );
     if( psw_path )
index 0b811507ec4839c31c62f98819c0096624a07dfa..15d2e245417fda15fb9afc68a02236f28b59877d 100644 (file)
 #   include <sys/time.h>                                   /* gettimeofday() */
 #endif
 
-#ifdef UNDER_CE
-#include <sys/time.h>                                      /* gettimeofday() */
-#endif
-
 #include <time.h>                                                 /* ctime() */
-#if defined (WIN32) && !defined (UNDER_CE)
+#if defined (WIN32)
 #include <sys/timeb.h>                                            /* ftime() */
 #endif
 #include <limits.h>
@@ -276,7 +272,7 @@ int vlm_ExecuteCommand( vlm_t *p_vlm, const char *psz_command,
 
 int64_t vlm_Date(void)
 {
-#if defined (WIN32) && !defined (UNDER_CE)
+#if defined (WIN32)
     struct timeb tm;
     ftime( &tm );
     return ((int64_t)tm.time) * 1000000 + ((int64_t)tm.millitm) * 1000;
index f99c2a24616ff5a599e84165db8d5acac45fded9..1962ff5eb98a411db304e3557d0a81c64a5c09dc 100644 (file)
@@ -338,9 +338,6 @@ block_t *block_mmap_Alloc (void *addr, size_t length)
 
 #ifdef WIN32
 # include <io.h>
-# ifdef UNDER_CE
-#  define _get_osfhandle(a) ((long) (a))
-# endif
 
 static
 ssize_t pread (int fd, void *buf, size_t count, off_t offset)
index 6afea64fdd6599ba0b99b5f24ec3bafc648c4df3..c4fde538cf60b5daf36fbc1e8efdb8b44e1d509e 100644 (file)
@@ -74,9 +74,7 @@
  * Remaining text is a required description of the update
  */
 
-#if defined( UNDER_CE )
-# define UPDATE_OS_SUFFIX "-ce"
-#elif defined( WIN64 )
+#if defined( WIN64 )
 # define UPDATE_OS_SUFFIX "-win-x64"
 #elif defined( WIN32 )
 # define UPDATE_OS_SUFFIX "-win-x86"
index 62384a14aa0671683c057fa546806fd6b12395be..043e28ba5d49682907114113fdefa651a7b1bed2 100644 (file)
@@ -52,9 +52,7 @@
 # include <poll.h>
 #endif
 
-#if defined( UNDER_CE )
-#   include <winsock.h>
-#elif defined( WIN32 )
+#if defined( WIN32 )
 #   include <winsock2.h>
 #else
 #   include <sys/socket.h>
index d8dc9d59ce5dd9d31113251bddbcb56dfa7eec46..6763f10a399c4f94529a14e3d512cca0b73fd059 100644 (file)
 #include <vlc_network.h>
 
 #ifdef WIN32
-#   if defined(UNDER_CE)
-#       undef IP_MULTICAST_TTL
-#       define IP_MULTICAST_TTL 3
-#       undef IP_ADD_MEMBERSHIP
-#       define IP_ADD_MEMBERSHIP 5
-#   endif
 #   define EAFNOSUPPORT WSAEAFNOSUPPORT
 #else
 #   include <unistd.h>
index 23e41c51d37d20dc85ab1fb6d2faefd672ebb24e..9bf5716a29bbcff467ce29e106b9d6e8af451389 100644 (file)
@@ -39,9 +39,7 @@
 #include <stdarg.h>
 #include <stdlib.h>
 #include <sys/types.h>
-#ifdef UNDER_CE
-#  include <tchar.h>
-#elif defined(WIN32)
+#if defined(WIN32)
 #  include <io.h>
 #endif
 #include <errno.h>
@@ -61,7 +59,6 @@ int utf8_vfprintf( FILE *stream, const char *fmt, va_list ap )
     if (unlikely(res == -1))
         return -1;
 
-# ifndef UNDER_CE
     /* Writing to the console is a lot of fun on Microsoft Windows.
      * If you use the standard I/O functions, you must use the OEM code page,
      * which is different from the usual ANSI code page. Or maybe not, if the
@@ -82,7 +79,7 @@ int utf8_vfprintf( FILE *stream, const char *fmt, va_list ap )
                 goto out;
         }
     }
-# endif
+
     char *ansi = ToANSI (str);
     if (ansi != NULL)
     {
index 42473ff54b2e85eb77d4a7a9af27685a9c9450b5..9954bd8a33854b630aa97513efbd63ff828567df 100644 (file)
@@ -307,7 +307,7 @@ char *make_path (const char *url)
 
     if (schemelen == 4 && !strncasecmp (url, "file", 4))
     {
-#if (!defined (WIN32) && !defined (__OS2__)) || defined (UNDER_CE)
+#if !defined (WIN32) && !defined (__OS2__)
         /* Leading slash => local path */
         if (*path == '/')
             return path;
index 04e5bb7cc468e9cbc8723259a65c4a4a436bf5f9..b49b0e0f045a286cb53c1441ae26af15fd8cdbc2 100644 (file)
@@ -29,9 +29,7 @@
 #include <vlc_common.h>
 
 #include <w32api.h>
-#ifndef UNDER_CE
-# include <direct.h>
-#endif
+#include <direct.h>
 #include <shlobj.h>
 
 #include "../libvlc.h"
@@ -78,16 +76,9 @@ const char *config_GetConfDir (void)
     if (*appdir)
         return appdir;
 
-#if defined (UNDER_CE)
-    /*There are some errors in cegcc headers*/
-#undef SHGetSpecialFolderPath
-    BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL);
-    if( SHGetSpecialFolderPath( NULL, wdir, CSIDL_APPDATA, 1 ) )
-#else
     /* Get the "Application Data" folder for all users */
     if( S_OK == SHGetFolderPathW( NULL, CSIDL_COMMON_APPDATA
               | CSIDL_FLAG_CREATE, NULL, SHGFP_TYPE_CURRENT, wdir ) )
-#endif
     {
         WideCharToMultiByte (CP_UTF8, 0, wdir, -1,
                              appdir, PATH_MAX, NULL, NULL);
@@ -100,15 +91,8 @@ static char *config_GetShellDir (int csidl)
 {
     wchar_t wdir[MAX_PATH];
 
-#if defined (UNDER_CE)
-    /*There are some errors in cegcc headers*/
-#undef SHGetSpecialFolderPath
-    BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL);
-    if (SHGetSpecialFolderPath (NULL, wdir, CSIDL_APPDATA, 1))
-#else
     if (SHGetFolderPathW (NULL, csidl | CSIDL_FLAG_CREATE,
                           NULL, SHGFP_TYPE_CURRENT, wdir ) == S_OK)
-#endif
         return FromWide (wdir);
     return NULL;
 }
index 540cf7bfd2363f7df95458478a1f306c85e70801..ddeb704e8ad48581dc59bf8cd6ac615d0a812f38 100644 (file)
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <winsock2.h>
-#ifndef UNDER_CE
-# include <direct.h>
-#else
-# include <tchar.h>
-#endif
+#include <direct.h>
 
 #include <vlc_common.h>
 #include <vlc_charset.h>
@@ -82,10 +78,6 @@ int vlc_open (const char *filename, int flags, ...)
     if ((flags & O_TEXT) == 0)
         flags |= O_BINARY;
 
-#ifdef UNDER_CE
-    /*_open translates to wchar internally on WinCE*/
-    return _open (filename, flags, mode);
-#else
     /*
      * open() cannot open files with non-“ANSI” characters on Windows.
      * We use _wopen() instead. Same thing for mkdir() and stat().
@@ -97,7 +89,6 @@ int vlc_open (const char *filename, int flags, ...)
     int fd = _wopen (wpath, flags, mode);
     free (wpath);
     return fd;
-#endif
 }
 
 int vlc_openat (int dir, const char *filename, int flags, ...)
@@ -109,11 +100,6 @@ int vlc_openat (int dir, const char *filename, int flags, ...)
 
 int vlc_mkdir( const char *dirname, mode_t mode )
 {
-#if defined (UNDER_CE)
-    (void) mode;
-    /* mkdir converts internally to wchar */
-    return _mkdir(dirname);
-#else
     wchar_t *wpath = widen_path (dirname);
     if (wpath == NULL)
         return -1;
@@ -122,12 +108,10 @@ int vlc_mkdir( const char *dirname, mode_t mode )
     free (wpath);
     (void) mode;
     return ret;
-#endif
 }
 
 char *vlc_getcwd (void)
 {
-#ifndef UNDER_CE
     wchar_t *wdir = _wgetcwd (NULL, 0);
     if (wdir == NULL)
         return NULL;
@@ -135,9 +119,6 @@ char *vlc_getcwd (void)
     char *dir = FromWide (wdir);
     free (wdir);
     return dir;
-#else
-    return NULL;
-#endif
 }
 
 /* Under Windows, these wrappers return the list of drive letters
@@ -171,11 +152,7 @@ DIR *vlc_opendir (const char *dirname)
         free (wpath);
         /* Special mode to list drive letters */
         p_dir->wdir = NULL;
-#ifdef UNDER_CE
-        p_dir->u.drives = 1;
-#else
         p_dir->u.drives = GetLogicalDrives ();
-#endif
         return (void *)p_dir;
     }
 
@@ -203,10 +180,7 @@ char *vlc_readdir (DIR *dir)
         DWORD drives = p_dir->u.drives;
         if (drives == 0)
             return NULL; /* end */
-#ifdef UNDER_CE
-        p_dir->u.drives = 0;
-        return strdup ("\\");
-#else
+
         unsigned int i;
         for (i = 0; !(drives & 1); i++)
             drives >>= 1;
@@ -217,7 +191,6 @@ char *vlc_readdir (DIR *dir)
         if (asprintf (&ret, "%c:\\", 'A' + i) == -1)
             return NULL;
         return ret;
-#endif
     }
 
     if (p_dir->u.insert_dot_dot)
@@ -235,10 +208,6 @@ char *vlc_readdir (DIR *dir)
 
 int vlc_stat (const char *filename, struct stat *buf)
 {
-#ifdef UNDER_CE
-    /* _stat translates to wchar internally on WinCE */
-    return _stat (filename, buf);
-#else
     wchar_t *wpath = widen_path (filename);
     if (wpath == NULL)
         return -1;
@@ -249,7 +218,6 @@ int vlc_stat (const char *filename, struct stat *buf)
     int ret = _wstati64 (wpath, buf);
     free (wpath);
     return ret;
-#endif
 }
 
 int vlc_lstat (const char *filename, struct stat *buf)
@@ -259,10 +227,6 @@ int vlc_lstat (const char *filename, struct stat *buf)
 
 int vlc_unlink (const char *filename)
 {
-#ifdef UNDER_CE
-    /*_open translates to wchar internally on WinCE*/
-    return _unlink( filename );
-#else
     wchar_t *wpath = widen_path (filename);
     if (wpath == NULL)
         return -1;
@@ -270,7 +234,6 @@ int vlc_unlink (const char *filename)
     int ret = _wunlink (wpath);
     free (wpath);
     return ret;
-#endif
 }
 
 int vlc_rename (const char *oldpath, const char *newpath)
@@ -281,11 +244,6 @@ int vlc_rename (const char *oldpath, const char *newpath)
     if (wold == NULL || wnew == NULL)
         goto out;
 
-# ifdef UNDER_CE
-    /* FIXME: errno support */
-    if (MoveFileW (wold, wnew))
-        ret = 0;
-#else
     if (_wrename (wold, wnew) && (errno == EACCES || errno == EEXIST))
     {   /* Windows does not allow atomic file replacement */
         if (_wremove (wnew))
@@ -297,7 +255,6 @@ int vlc_rename (const char *oldpath, const char *newpath)
             goto out;
     }
     ret = 0;
-#endif
 out:
     free (wnew);
     free (wold);
@@ -306,24 +263,12 @@ out:
 
 int vlc_dup (int oldfd)
 {
-#ifdef UNDER_CE
-    (void) oldfd;
-    errno = ENOSYS;
-    return -1;
-#else
     return dup (oldfd);
-#endif
 }
 
 int vlc_pipe (int fds[2])
 {
-#ifdef UNDER_CE
-    (void) fds;
-    errno = ENOSYS;
-    return -1;
-#else
     return _pipe (fds, 32768, O_BINARY);
-#endif
 }
 
 #include <vlc_network.h>
index e617bd87bb3023cd09fc1fb81e8c20234dae76e4..a21d5ec5229359b72bcd6ca17c323463fdfe2d23 100644 (file)
@@ -58,17 +58,13 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
         return -1;
 
     module_handle_t handle;
-#ifndef UNDER_CE
     /* FIXME: this is not thread-safe -- Courmisch */
     UINT mode = SetErrorMode (SEM_FAILCRITICALERRORS);
     SetErrorMode (mode|SEM_FAILCRITICALERRORS);
-#endif
 
     handle = LoadLibraryW (wfile);
 
-#ifndef UNDER_CE
     SetErrorMode (mode);
-#endif
     free (wfile);
 
     if( handle == NULL )
@@ -91,17 +87,5 @@ void module_Unload( module_handle_t handle )
 
 void *module_Lookup( module_handle_t handle, const char *psz_function )
 {
-#ifdef UNDER_CE
-    wchar_t wide[strlen( psz_function ) + 1];
-    size_t i = 0;
-    do
-        wide[i] = psz_function[i]; /* UTF-16 <- ASCII */
-    while( psz_function[i++] );
-
-    return (void *)GetProcAddress( handle, wide );
-
-#else
     return (void *)GetProcAddress( handle, (char *)psz_function );
-
-#endif
 }
index ce8c78072f3a728f6517e0cca29fa2f90b43ee91..2ec409c9f9fdb78789a6a3f3908c765352d1412f 100644 (file)
 
 #include "../config/vlc_getopt.h"
 
-#if !defined( UNDER_CE )
-#   include  <mmsystem.h>
-#endif
-
+#include <mmsystem.h>
 #include <winsock.h>
 
 
@@ -59,9 +56,7 @@ static int system_InitWSA(int hi, int lo)
  */
 void system_Init(void)
 {
-#if !defined( UNDER_CE )
     timeBeginPeriod(5);
-#endif
 
     if (system_InitWSA(2, 2) && system_InitWSA(1, 1))
         fputs("Error: cannot initialize Winsocks\n", stderr);
@@ -85,7 +80,6 @@ typedef struct
 
 void system_Configure( libvlc_int_t *p_this, int i_argc, const char *const ppsz_argv[] )
 {
-#if !defined( UNDER_CE )
     /* Raise default priority of the current process */
 #ifndef ABOVE_NORMAL_PRIORITY_CLASS
 #   define ABOVE_NORMAL_PRIORITY_CLASS 0x00008000
@@ -212,8 +206,6 @@ void system_Configure( libvlc_int_t *p_this, int i_argc, const char *const ppsz_
             exit( 0 );
         }
     }
-
-#endif
 }
 
 static unsigned __stdcall IPCHelperThread( void *data )
@@ -340,9 +332,7 @@ void system_End(void)
         p_helper = NULL;
     }
 
-#if !defined( UNDER_CE )
     timeEndPeriod(5);
-#endif
 
     /* XXX: In theory, we should not call this if WSAStartup() failed. */
     WSACleanup();
index bb5d242cb6329d5df66be3533692749719cdf527..c8499f0ea8c961365eaac3104351c42466d4924d 100644 (file)
@@ -36,9 +36,6 @@
 #include <assert.h>
 #include <limits.h>
 #include <errno.h>
-#ifdef UNDER_CE
-# include <mmsystem.h>
-#endif
 
 static vlc_threadvar_t thread_key;
 
@@ -48,9 +45,6 @@ static vlc_threadvar_t thread_key;
 struct vlc_thread
 {
     HANDLE         id;
-#ifdef UNDER_CE
-    HANDLE         cancel_event;
-#endif
 
     bool           detached;
     bool           killable;
@@ -107,31 +101,6 @@ static DWORD vlc_WaitForMultipleObjects (DWORD count, const HANDLE *handles,
                                          DWORD delay)
 {
     DWORD ret;
-#ifdef UNDER_CE
-    HANDLE buf[count + 1];
-
-    struct vlc_thread *th = vlc_threadvar_get (thread_key);
-    if (th != NULL)
-    {
-        memcpy (buf, handles, count * sizeof(HANDLE));
-        buf[count++] = th->cancel_event;
-        handles = buf;
-    }
-
-    if (count == 0)
-    {
-         Sleep (delay);
-         ret = WAIT_TIMEOUT;
-    }
-    else
-        ret = WaitForMultipleObjects (count, handles, FALSE, delay);
-
-    if ((th != NULL) && (ret == WAIT_OBJECT_0 + count - 1))
-    {
-        vlc_cancel_self ((uintptr_t)th);
-        ret = WAIT_IO_COMPLETION;
-    }
-#else
     if (count == 0)
     {
         ret = SleepEx (delay, TRUE);
@@ -140,7 +109,7 @@ static DWORD vlc_WaitForMultipleObjects (DWORD count, const HANDLE *handles,
     }
     else
         ret = WaitForMultipleObjectsEx (count, handles, FALSE, delay, TRUE);
-#endif
+
     /* We do not abandon objects... this would be a bug */
     assert (ret < WAIT_ABANDONED_0 || WAIT_ABANDONED_0 + count - 1 < ret);
 
@@ -558,9 +527,6 @@ retry:
     if (th->detached)
     {
         CloseHandle (th->id);
-#ifdef UNDER_CE
-        CloseHandle (th->cancel_event);
-#endif
         free (th);
     }
 }
@@ -590,7 +556,6 @@ static int vlc_clone_attr (vlc_thread_t *p_handle, bool detached,
     th->cleaners = NULL;
 
     HANDLE hThread;
-#ifndef UNDER_CE
     /* When using the MSVCRT C library you have to use the _beginthreadex
      * function instead of CreateThread, otherwise you'll end up with
      * memory leaks and the signal functions not working (see Microsoft
@@ -606,26 +571,6 @@ static int vlc_clone_attr (vlc_thread_t *p_handle, bool detached,
     }
     hThread = (HANDLE)h;
 
-#else
-    th->cancel_event = CreateEvent (NULL, FALSE, FALSE, NULL);
-    if (th->cancel_event == NULL)
-    {
-        free (th);
-        return ENOMEM;
-    }
-
-    /* Not sure if CREATE_SUSPENDED + ResumeThread() is any useful on WinCE.
-     * Thread handles act up, too. */
-    hThread = CreateThread (NULL, 128*1024, vlc_entry, th,
-                            CREATE_SUSPENDED, NULL);
-    if (hThread == NULL)
-    {
-        CloseHandle (th->cancel_event);
-        free (th);
-        return ENOMEM;
-    }
-
-#endif
     /* Thread is suspended, so we can safely set th->id */
     th->id = hThread;
     if (p_handle != NULL)
@@ -655,9 +600,6 @@ void vlc_join (vlc_thread_t th, void **result)
     if (result != NULL)
         *result = th->data;
     CloseHandle (th->id);
-#ifdef UNDER_CE
-    CloseHandle (th->cancel_event);
-#endif
     free (th);
 }
 
@@ -691,11 +633,7 @@ static void CALLBACK vlc_cancel_self (ULONG_PTR self)
 
 void vlc_cancel (vlc_thread_t th)
 {
-#ifndef UNDER_CE
     QueueUserAPC (vlc_cancel_self, th->id, (uintptr_t)th);
-#else
-    SetEvent (th->cancel_event);
-#endif
 }
 
 int vlc_savecancel (void)
@@ -734,11 +672,7 @@ void vlc_testcancel (void)
 
         th->data = NULL; /* TODO: special value? */
         vlc_thread_cleanup (th);
-#ifndef UNDER_CE
         _endthreadex(0);
-#else
-        ExitThread(0);
-#endif
     }
 }
 
@@ -824,17 +758,11 @@ void msleep (mtime_t delay)
 /*** Timers ***/
 struct vlc_timer
 {
-#ifndef UNDER_CE
     HANDLE handle;
-#else
-    unsigned id;
-    unsigned interval;
-#endif
     void (*func) (void *);
     void *data;
 };
 
-#ifndef UNDER_CE
 static void CALLBACK vlc_timer_do (void *val, BOOLEAN timeout)
 {
     struct vlc_timer *timer = val;
@@ -842,26 +770,6 @@ static void CALLBACK vlc_timer_do (void *val, BOOLEAN timeout)
     assert (timeout);
     timer->func (timer->data);
 }
-#else
-static void CALLBACK vlc_timer_do (unsigned timer_id, unsigned msg,
-                                   DWORD_PTR user, DWORD_PTR unused1,
-                                   DWORD_PTR unused2)
-{
-    struct vlc_timer *timer = (struct vlc_timer *) user;
-    assert (timer_id == timer->id);
-    (void) msg;
-    (void) unused1;
-    (void) unused2;
-
-    timer->func (timer->data);
-
-    if (timer->interval)
-    {
-        mtime_t interval = timer->interval * 1000;
-        vlc_timer_schedule (timer, false, interval, interval);
-    }
-}
-#endif
 
 int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
 {
@@ -871,46 +779,26 @@ int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
         return ENOMEM;
     timer->func = func;
     timer->data = data;
-#ifndef UNDER_CE
     timer->handle = INVALID_HANDLE_VALUE;
-#else
-    timer->id = 0;
-    timer->interval = 0;
-#endif
     *id = timer;
     return 0;
 }
 
 void vlc_timer_destroy (vlc_timer_t timer)
 {
-#ifndef UNDER_CE
     if (timer->handle != INVALID_HANDLE_VALUE)
         DeleteTimerQueueTimer (NULL, timer->handle, INVALID_HANDLE_VALUE);
-#else
-    if (timer->id)
-        timeKillEvent (timer->id);
-    /* FIXME: timers that have not yet completed will trigger use-after-free */
-#endif
     free (timer);
 }
 
 void vlc_timer_schedule (vlc_timer_t timer, bool absolute,
                          mtime_t value, mtime_t interval)
 {
-#ifndef UNDER_CE
     if (timer->handle != INVALID_HANDLE_VALUE)
     {
         DeleteTimerQueueTimer (NULL, timer->handle, NULL);
         timer->handle = INVALID_HANDLE_VALUE;
     }
-#else
-    if (timer->id)
-    {
-        timeKillEvent (timer->id);
-        timer->id = 0;
-        timer->interval = 0;
-    }
-#endif
     if (value == 0)
         return; /* Disarm */
 
@@ -919,28 +807,8 @@ void vlc_timer_schedule (vlc_timer_t timer, bool absolute,
     value = (value + 999) / 1000;
     interval = (interval + 999) / 1000;
 
-#ifndef UNDER_CE
     if (!CreateTimerQueueTimer (&timer->handle, NULL, vlc_timer_do, timer,
                                 value, interval, WT_EXECUTEDEFAULT))
-#else
-    TIMECAPS caps;
-    timeGetDevCaps (&caps, sizeof(caps));
-
-    unsigned delay = value;
-    delay = __MAX(delay, caps.wPeriodMin);
-    delay = __MIN(delay, caps.wPeriodMax);
-
-    unsigned event = TIME_ONESHOT;
-
-    if (interval == delay)
-        event = TIME_PERIODIC;
-    else if (interval)
-        timer->interval = interval;
-
-    timer->id = timeSetEvent (delay, delay / 20, vlc_timer_do, (DWORD) timer,
-                              event);
-    if (!timer->id)
-#endif
         abort ();
 }
 
@@ -954,12 +822,10 @@ unsigned vlc_timer_getoverrun (vlc_timer_t timer)
 /*** CPU ***/
 unsigned vlc_GetCPUCount (void)
 {
-#ifndef UNDER_CE
     DWORD_PTR process;
     DWORD_PTR system;
 
     if (GetProcessAffinityMask (GetCurrentProcess(), &process, &system))
         return popcount (system);
-#endif
      return 1;
 }