From d1296b32da7293d0f780cdb9b4782c84e39fb1da Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Wed, 13 Nov 2002 20:51:05 +0000 Subject: [PATCH] * ./bootstrap: bootstrap now requires the --config flag. With no arguments it simply outputs a usage message. * ./src/*: fixed a bunch of (legitimate) warnings under VC++. * ./evc/*, ./msvc/*: split the workspaces into three projects (libvlc, vlc and plugins -- plugins doesn't build anything yet). --- Makefile.am | 17 +- bootstrap | 159 ++- doc/fortunes.txt | 6 + evc/libvlc.vcp | 2019 +++++++++++++++++++++++++++++++ evc/libvlc.vcp.in | 316 +++++ evc/plugins.vcp | 394 ++++++ evc/plugins.vcp.in | 386 ++++++ evc/vlc.c | 7 +- evc/vlc.vcp | 1702 -------------------------- evc/vlc.vcw | 42 + include/aout_internal.h | 6 +- msvc/config.h | 2 + msvc/libvlc.dsp | 730 +++++++++++ msvc/libvlc.dsp.in | 83 ++ msvc/plugins.dsp | 94 ++ msvc/plugins.dsp.in | 86 ++ msvc/vlc.dsp | 650 +--------- msvc/vlc.dsp.in | 4 +- msvc/vlc.dsw | 27 + share/vlc_wince_rc.rc | 2 +- src/audio_output/common.c | 4 +- src/audio_output/input.c | 8 +- src/audio_output/intf.c | 4 +- src/audio_output/mixer.c | 4 +- src/extras/dirent.c | 16 +- src/extras/libc.c | 4 +- src/input/input_ext-dec.c | 6 +- src/input/input_ext-plugins.c | 14 +- src/interface/intf_eject.c | 8 +- src/misc/configuration.c | 16 +- src/misc/iso_lang.c | 4 +- src/misc/netutils.c | 3 +- src/playlist/playlist.c | 4 +- src/video_output/video_output.c | 44 +- src/video_output/video_text.c | 16 +- 35 files changed, 4396 insertions(+), 2491 deletions(-) create mode 100644 evc/libvlc.vcp create mode 100644 evc/libvlc.vcp.in create mode 100644 evc/plugins.vcp create mode 100644 evc/plugins.vcp.in create mode 100644 msvc/libvlc.dsp create mode 100644 msvc/libvlc.dsp.in create mode 100644 msvc/plugins.dsp create mode 100644 msvc/plugins.dsp.in diff --git a/Makefile.am b/Makefile.am index f33531545d..bee6d02182 100644 --- a/Makefile.am +++ b/Makefile.am @@ -272,23 +272,28 @@ EXTRA_DIST += \ ############################################################################### EXTRA_DIST += \ - msvc/vlc.dsp \ msvc/vlc.dsw \ + msvc/libvlc.dsp \ + msvc/libvlc.dsp.in \ + msvc/vlc.dsp \ msvc/vlc.dsp.in \ msvc/vlc.dsp.out \ + msvc/plugins.dsp \ + msvc/plugins.dsp.in \ msvc/config.h \ msvc/modules_builtin_msvc.h \ - evc/vlc.vcp \ evc/vlc.vcw \ + evc/libvlc.vcp \ + evc/libvlc.vcp.in \ + evc/vlc.vcp \ evc/vlc.vcp.in \ evc/vlc.vcp.out \ + evc/plugins.vcp \ + evc/plugins.vcp.in \ evc/config.h \ - evc/modules_builtin_msvc.h \ + evc/modules_builtin_evc.h \ $(NULL) -show-vlc-sources: FORCE - @echo X: $(vlc_SOURCES) - show-libvlc-sources: FORCE @echo X: $(SOURCES_libvlc_common) $(SOURCES_libvlc_win32) $(SOURCES_libvlc_dirent) $(SOURCES_libvlc_getopt) $(SOURCES_libvlc_libc) diff --git a/bootstrap b/bootstrap index 75a2cb1f34..c1d26d062e 100755 --- a/bootstrap +++ b/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh ## bootstrap file for vlc, the VideoLAN Client -## $Id: bootstrap,v 1.26 2002/11/13 15:28:23 sam Exp $ +## $Id: bootstrap,v 1.27 2002/11/13 20:51:03 sam Exp $ ## ## Authors: Samuel Hocevar @@ -11,35 +11,61 @@ LANG=C export LANG +## +## Give help +## +help() +{ + if test "$do_help" = "yes" + then + cat << EOF +recognized flags are: + --config create Makefile and configure scripts (read HACKING) + --update-vc update Microsoft Visual Studio files + --update-po update translation files +EOF + exit 1 + fi +} + ### ### argument check ### +do_help=yes do_po=no do_vc=no while test $# -gt 0; do case "$1" in + --config) + do_help=no + ;; --update-vc) + do_help=no do_vc=yes ;; --update-po) + do_help=no do_po=yes ;; *) echo "$0: unknown option $1" - echo "recognized flags are --update-vc and --update-po" - exit 1 + do_help=yes + help ;; esac shift done +## +## Give help if needed +## +help + ## ## Update the MSVC project files ## -if test "$do_vc" = "no" +if test "$do_vc" = "yes" then - echo "not updating MSVC or eVC project file. use --update-vc to force doing it." -else if test ! -f Makefile then echo "no Makefile found, did you run ./configure?" @@ -54,7 +80,8 @@ else LIBVLC_HEADERS=`make show-libvlc-headers | grep '^X: ' | cut -b3-` LIBVLC_PKG_HEADERS=`make show-libvlc-pkg-headers | grep '^X: ' | cut -b3-` - for target in evc/vlc.vcp msvc/vlc.dsp + # libvlc files + for target in evc/libvlc.vcp msvc/libvlc.dsp do rm -f ${target} # Top of the project file @@ -63,23 +90,6 @@ else cat >> ${target} << EOF # Begin Group "Source Files"${M} # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M} -# Begin Group "vlc"${M} -# Begin Source File${M} -EOF - if test "${target}" = "evc/vlc.vcp" - then - cat >> ${target} << EOF -SOURCE="..\\evc\\vlc.c"${M} -EOF - else - cat >> ${target} << EOF -SOURCE="..\\src\\vlc.c"${M} -EOF - fi - cat >> ${target} << EOF -# End Source File${M} -# End Group${M} -# Begin Group "libvlc"${M} EOF for file in `for i in ${LIBVLC_SOURCES} ; do echo $i ; done | grep -v "/.*/"` do @@ -97,42 +107,42 @@ EOF EOF for file in `for i in ${LIBVLC_SOURCES} ; do echo $i ; done | grep "/${subdir}/"` do - if test "${target}" = "evc/vlc.vcp" + if test "${target}" = "evc/libvlc.vcp" then cat >> ${target} << EOF # Begin Source File${M} SOURCE="..\\`echo $file | sed -e 's%/%\\\\%g'`"${M} # ADD CPP /D "__VLC__" /D PLUGIN_PATH=\\"plugins\\" /D DATA_PATH=\\"share\\"${M} !IF "\$(CFG)" == "vlc - Win32 (WCE MIPS) Release"${M} -# PROP Intermediate_Dir "Release\\${subdir}"${M} -# PROP Output_Dir "Release\\${subdir}"${M} +# PROP Intermediate_Dir "MIPSRel\\${subdir}"${M} +# PROP Output_Dir "MIPSRel\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"${M} -# PROP Intermediate_Dir "Debug\\${subdir}"${M} -# PROP Output_Dir "Debug\\${subdir}"${M} +# PROP Intermediate_Dir "MIPSDbg\\${subdir}"${M} +# PROP Output_Dir "MIPSDbg\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH4) Release"${M} -# PROP Intermediate_Dir "Release\\${subdir}"${M} -# PROP Output_Dir "Release\\${subdir}"${M} +# PROP Intermediate_Dir "SH4Rel\\${subdir}"${M} +# PROP Output_Dir "SH4Rel\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH4) Debug"${M} -# PROP Intermediate_Dir "Debug\\${subdir}"${M} -# PROP Output_Dir "Debug\\${subdir}"${M} +# PROP Intermediate_Dir "SH4Dbg\\${subdir}"${M} +# PROP Output_Dir "SH4Dbg\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH3) Release"${M} -# PROP Intermediate_Dir "Release\\${subdir}"${M} -# PROP Output_Dir "Release\\${subdir}"${M} +# PROP Intermediate_Dir "SH3Rel\\${subdir}"${M} +# PROP Output_Dir "SH3Rel\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH3) Debug"${M} -# PROP Intermediate_Dir "Debug\\${subdir}"${M} -# PROP Output_Dir "Debug\\${subdir}"${M} +# PROP Intermediate_Dir "SH3Dbg\\${subdir}"${M} +# PROP Output_Dir "SH3Dbg\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE ARM) Release"${M} -# PROP Intermediate_Dir "Release\\${subdir}"${M} -# PROP Output_Dir "Release\\${subdir}"${M} +# PROP Intermediate_Dir "ARMRel\\${subdir}"${M} +# PROP Output_Dir "ARMRel\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE ARM) Debug"${M} -# PROP Intermediate_Dir "Debug\\${subdir}"${M} -# PROP Output_Dir "Debug\\${subdir}"${M} +# PROP Intermediate_Dir "ARMDbg\\${subdir}"${M} +# PROP Output_Dir "ARMDbg\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE x86em) Release"${M} -# PROP Intermediate_Dir "Release\\${subdir}"${M} -# PROP Output_Dir "Release\\${subdir}"${M} +# PROP Intermediate_Dir "X86EMRel\\${subdir}"${M} +# PROP Output_Dir "X86EMRel\\${subdir}"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE x86em) Debug"${M} -# PROP Intermediate_Dir "Debug\\${subdir}"${M} -# PROP Output_Dir "Debug\\${subdir}"${M} +# PROP Intermediate_Dir "X86EMDbg\\${subdir}"${M} +# PROP Output_Dir "X86EMDbg\\${subdir}"${M} !ENDIF${M} # End Source File${M} EOF @@ -158,10 +168,7 @@ EOF done cat >> ${target} << EOF # End Group${M} -# End Group${M} EOF - # The modules - echo 'no modules yet' # The headers cat >> ${target} << EOF # Begin Group "Header Files"${M} @@ -189,6 +196,58 @@ EOF cat >> ${target} << EOF # End Group${M} # End Group${M} +# End Target${M} +# End Project${M} +EOF + done + + # plugins files + for target in evc/plugins.vcp msvc/plugins.dsp + do + rm -f ${target} + # Top of the project file + cat ${target}.in > ${target} + # The source files + cat >> ${target} << EOF +# Begin Group "Source Files"${M} +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M} +# End Group${M} +EOF + # The headers + cat >> ${target} << EOF +# Begin Group "Header Files"${M} +# PROP Default_Filter "h;hpp;hxx;hm;inl"${M} +# End Group${M} +# End Target${M} +# End Project${M} +EOF + done + + # vlc files + for target in evc/vlc.vcp msvc/vlc.dsp + do + rm -f ${target} + # Top of the project file + cat ${target}.in > ${target} + # The source files + cat >> ${target} << EOF +# Begin Group "Source Files"${M} +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M} +# Begin Source File${M} +EOF + if test "${target}" = "evc/vlc.vcp" + then + cat >> ${target} << EOF +SOURCE="..\\evc\\vlc.c"${M} +EOF + else + cat >> ${target} << EOF +SOURCE="..\\src\\vlc.c"${M} +EOF + fi + cat >> ${target} << EOF +# End Source File${M} +# End Group${M} EOF # Bottom of the project file - handles resource files too cat ${target}.out >> ${target} @@ -200,10 +259,8 @@ fi ## ## Update the potfiles because no one ever does it ## -if test "$do_po" = "no" +if test "$do_po" = "yes" then - echo "not updating potfiles. use --update-po to force doing it." -else cd po make update-po 2>&1 | grep '^[^:]*:$' | cut -f1 -d: | tr '\n' ' ' | sed 's/ $//' cd .. diff --git a/doc/fortunes.txt b/doc/fortunes.txt index 1f689966f4..99359e2db7 100644 --- a/doc/fortunes.txt +++ b/doc/fortunes.txt @@ -367,3 +367,9 @@ the Boston strangler is to the woman home alone. -- #videolan % + dudes, you'll hate me again: bootstrap will now need an argument :) + sam: hate you already + sam: don't worry sam, we already hated you ;) + + -- #videolan +% diff --git a/evc/libvlc.vcp b/evc/libvlc.vcp new file mode 100644 index 0000000000..1e89652f72 --- /dev/null +++ b/evc/libvlc.vcp @@ -0,0 +1,2019 @@ +# Microsoft eMbedded Visual Tools Project File - Name="libvlc" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE SH4) Static Library" 0x8604 +# TARGTYPE "Win32 (WCE MIPS) Static Library" 0x8204 +# TARGTYPE "Win32 (WCE x86em) Static Library" 0x7f04 +# TARGTYPE "Win32 (WCE ARM) Static Library" 0x8504 +# TARGTYPE "Win32 (WCE SH3) Static Library" 0x8104 + +CFG=libvlc - Win32 (WCE MIPS) Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libvlc.vcn". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libvlc.vcn" CFG="libvlc - Win32 (WCE MIPS) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libvlc - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Static Library") +!MESSAGE "libvlc - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Static Library") +!MESSAGE "libvlc - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Static Library") +!MESSAGE "libvlc - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Static Library") +!MESSAGE "libvlc - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Static Library") +!MESSAGE "libvlc - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSRel" +# PROP BASE Intermediate_Dir "MIPSRel" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSRel" +# PROP Intermediate_Dir "MIPSRel" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSDbg" +# PROP BASE Intermediate_Dir "MIPSDbg" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSDbg" +# PROP Intermediate_Dir "MIPSDbg" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH4Rel" +# PROP BASE Intermediate_Dir "SH4Rel" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH4Rel" +# PROP Intermediate_Dir "SH4Rel" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH4Dbg" +# PROP BASE Intermediate_Dir "SH4Dbg" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH4Dbg" +# PROP Intermediate_Dir "SH4Dbg" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH3Rel" +# PROP BASE Intermediate_Dir "SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH3Rel" +# PROP Intermediate_Dir "SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH3Dbg" +# PROP BASE Intermediate_Dir "SH3Dbg" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH3Dbg" +# PROP Intermediate_Dir "SH3Dbg" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMRel" +# PROP BASE Intermediate_Dir "ARMRel" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMRel" +# PROP Intermediate_Dir "ARMRel" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMDbg" +# PROP BASE Intermediate_Dir "ARMDbg" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMDbg" +# PROP Intermediate_Dir "ARMDbg" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "X86EMRel" +# PROP BASE Intermediate_Dir "X86EMRel" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "X86EMRel" +# PROP Intermediate_Dir "X86EMRel" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86EMDbg" +# PROP BASE Intermediate_Dir "X86EMDbg" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86EMDbg" +# PROP Intermediate_Dir "X86EMDbg" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ENDIF + +# Begin Target + +# Name "libvlc - Win32 (WCE MIPS) Release" +# Name "libvlc - Win32 (WCE MIPS) Debug" +# Name "libvlc - Win32 (WCE SH4) Release" +# Name "libvlc - Win32 (WCE SH4) Debug" +# Name "libvlc - Win32 (WCE SH3) Release" +# Name "libvlc - Win32 (WCE SH3) Debug" +# Name "libvlc - Win32 (WCE ARM) Release" +# Name "libvlc - Win32 (WCE ARM) Debug" +# Name "libvlc - Win32 (WCE x86em) Release" +# Name "libvlc - Win32 (WCE x86em) Debug" + +# Begin Group "Source Files" +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File +SOURCE="..\src\libvlc.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +# End Source File +# Begin Source File +SOURCE="..\src\libvlc.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +# End Source File +# Begin Group "audio_output" +# Begin Source File +SOURCE="..\src\audio_output\common.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\dec.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\filters.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\input.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\mixer.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\output.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\intf.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\audio_output" +# PROP Output_Dir "MIPSRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\audio_output" +# PROP Output_Dir "MIPSDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\audio_output" +# PROP Output_Dir "SH4Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\audio_output" +# PROP Output_Dir "SH4Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\audio_output" +# PROP Output_Dir "SH3Rel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\audio_output" +# PROP Output_Dir "SH3Dbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\audio_output" +# PROP Output_Dir "ARMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\audio_output" +# PROP Output_Dir "ARMDbg\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\audio_output" +# PROP Output_Dir "X86EMRel\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\audio_output" +# PROP Output_Dir "X86EMDbg\audio_output" +!ENDIF +# End Source File +# End Group +# Begin Group "extras" +# Begin Source File +SOURCE="..\src\extras\dirent.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\extras" +# PROP Output_Dir "MIPSRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\extras" +# PROP Output_Dir "MIPSDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\extras" +# PROP Output_Dir "SH4Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\extras" +# PROP Output_Dir "SH4Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\extras" +# PROP Output_Dir "SH3Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\extras" +# PROP Output_Dir "SH3Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\extras" +# PROP Output_Dir "ARMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\extras" +# PROP Output_Dir "ARMDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\extras" +# PROP Output_Dir "X86EMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\extras" +# PROP Output_Dir "X86EMDbg\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\dirent.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\extras" +# PROP Output_Dir "MIPSRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\extras" +# PROP Output_Dir "MIPSDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\extras" +# PROP Output_Dir "SH4Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\extras" +# PROP Output_Dir "SH4Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\extras" +# PROP Output_Dir "SH3Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\extras" +# PROP Output_Dir "SH3Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\extras" +# PROP Output_Dir "ARMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\extras" +# PROP Output_Dir "ARMDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\extras" +# PROP Output_Dir "X86EMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\extras" +# PROP Output_Dir "X86EMDbg\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\getopt.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\extras" +# PROP Output_Dir "MIPSRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\extras" +# PROP Output_Dir "MIPSDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\extras" +# PROP Output_Dir "SH4Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\extras" +# PROP Output_Dir "SH4Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\extras" +# PROP Output_Dir "SH3Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\extras" +# PROP Output_Dir "SH3Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\extras" +# PROP Output_Dir "ARMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\extras" +# PROP Output_Dir "ARMDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\extras" +# PROP Output_Dir "X86EMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\extras" +# PROP Output_Dir "X86EMDbg\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\getopt.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\extras" +# PROP Output_Dir "MIPSRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\extras" +# PROP Output_Dir "MIPSDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\extras" +# PROP Output_Dir "SH4Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\extras" +# PROP Output_Dir "SH4Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\extras" +# PROP Output_Dir "SH3Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\extras" +# PROP Output_Dir "SH3Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\extras" +# PROP Output_Dir "ARMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\extras" +# PROP Output_Dir "ARMDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\extras" +# PROP Output_Dir "X86EMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\extras" +# PROP Output_Dir "X86EMDbg\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\getopt1.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\extras" +# PROP Output_Dir "MIPSRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\extras" +# PROP Output_Dir "MIPSDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\extras" +# PROP Output_Dir "SH4Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\extras" +# PROP Output_Dir "SH4Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\extras" +# PROP Output_Dir "SH3Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\extras" +# PROP Output_Dir "SH3Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\extras" +# PROP Output_Dir "ARMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\extras" +# PROP Output_Dir "ARMDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\extras" +# PROP Output_Dir "X86EMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\extras" +# PROP Output_Dir "X86EMDbg\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\libc.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\extras" +# PROP Output_Dir "MIPSRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\extras" +# PROP Output_Dir "MIPSDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\extras" +# PROP Output_Dir "SH4Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\extras" +# PROP Output_Dir "SH4Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\extras" +# PROP Output_Dir "SH3Rel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\extras" +# PROP Output_Dir "SH3Dbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\extras" +# PROP Output_Dir "ARMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\extras" +# PROP Output_Dir "ARMDbg\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\extras" +# PROP Output_Dir "X86EMRel\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\extras" +# PROP Output_Dir "X86EMDbg\extras" +!ENDIF +# End Source File +# End Group +# Begin Group "input" +# Begin Source File +SOURCE="..\src\input\input.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_ext-plugins.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_ext-dec.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_ext-intf.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_dec.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_programs.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_clock.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_info.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\input" +# PROP Output_Dir "MIPSRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\input" +# PROP Output_Dir "MIPSDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\input" +# PROP Output_Dir "SH4Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\input" +# PROP Output_Dir "SH4Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\input" +# PROP Output_Dir "SH3Rel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\input" +# PROP Output_Dir "SH3Dbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\input" +# PROP Output_Dir "ARMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\input" +# PROP Output_Dir "ARMDbg\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\input" +# PROP Output_Dir "X86EMRel\input" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\input" +# PROP Output_Dir "X86EMDbg\input" +!ENDIF +# End Source File +# End Group +# Begin Group "interface" +# Begin Source File +SOURCE="..\src\interface\interface.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\interface" +# PROP Output_Dir "MIPSRel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\interface" +# PROP Output_Dir "MIPSDbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\interface" +# PROP Output_Dir "SH4Rel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\interface" +# PROP Output_Dir "SH4Dbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\interface" +# PROP Output_Dir "SH3Rel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\interface" +# PROP Output_Dir "SH3Dbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\interface" +# PROP Output_Dir "ARMRel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\interface" +# PROP Output_Dir "ARMDbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\interface" +# PROP Output_Dir "X86EMRel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\interface" +# PROP Output_Dir "X86EMDbg\interface" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\interface\intf_eject.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\interface" +# PROP Output_Dir "MIPSRel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\interface" +# PROP Output_Dir "MIPSDbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\interface" +# PROP Output_Dir "SH4Rel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\interface" +# PROP Output_Dir "SH4Dbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\interface" +# PROP Output_Dir "SH3Rel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\interface" +# PROP Output_Dir "SH3Dbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\interface" +# PROP Output_Dir "ARMRel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\interface" +# PROP Output_Dir "ARMDbg\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\interface" +# PROP Output_Dir "X86EMRel\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\interface" +# PROP Output_Dir "X86EMDbg\interface" +!ENDIF +# End Source File +# End Group +# Begin Group "misc" +# Begin Source File +SOURCE="..\src\misc\mtime.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\modules.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\threads.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\cpu.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\configuration.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\netutils.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\iso_lang.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\iso-639_def.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\messages.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\objects.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\variables.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\error.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\win32_specific.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\misc" +# PROP Output_Dir "MIPSRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\misc" +# PROP Output_Dir "MIPSDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\misc" +# PROP Output_Dir "SH4Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\misc" +# PROP Output_Dir "SH4Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\misc" +# PROP Output_Dir "SH3Rel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\misc" +# PROP Output_Dir "SH3Dbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\misc" +# PROP Output_Dir "ARMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\misc" +# PROP Output_Dir "ARMDbg\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\misc" +# PROP Output_Dir "X86EMRel\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\misc" +# PROP Output_Dir "X86EMDbg\misc" +!ENDIF +# End Source File +# End Group +# Begin Group "playlist" +# Begin Source File +SOURCE="..\src\playlist\playlist.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\playlist" +# PROP Output_Dir "MIPSRel\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\playlist" +# PROP Output_Dir "MIPSDbg\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\playlist" +# PROP Output_Dir "SH4Rel\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\playlist" +# PROP Output_Dir "SH4Dbg\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\playlist" +# PROP Output_Dir "SH3Rel\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\playlist" +# PROP Output_Dir "SH3Dbg\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\playlist" +# PROP Output_Dir "ARMRel\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\playlist" +# PROP Output_Dir "ARMDbg\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\playlist" +# PROP Output_Dir "X86EMRel\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\playlist" +# PROP Output_Dir "X86EMDbg\playlist" +!ENDIF +# End Source File +# End Group +# Begin Group "stream_output" +# Begin Source File +SOURCE="..\src\stream_output\stream_output.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\stream_output" +# PROP Output_Dir "MIPSRel\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\stream_output" +# PROP Output_Dir "MIPSDbg\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\stream_output" +# PROP Output_Dir "SH4Rel\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\stream_output" +# PROP Output_Dir "SH4Dbg\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\stream_output" +# PROP Output_Dir "SH3Rel\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\stream_output" +# PROP Output_Dir "SH3Dbg\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\stream_output" +# PROP Output_Dir "ARMRel\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\stream_output" +# PROP Output_Dir "ARMDbg\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\stream_output" +# PROP Output_Dir "X86EMRel\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\stream_output" +# PROP Output_Dir "X86EMDbg\stream_output" +!ENDIF +# End Source File +# End Group +# Begin Group "video_output" +# Begin Source File +SOURCE="..\src\video_output\video_output.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\video_output" +# PROP Output_Dir "MIPSRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\video_output" +# PROP Output_Dir "MIPSDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\video_output" +# PROP Output_Dir "SH4Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\video_output" +# PROP Output_Dir "SH4Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\video_output" +# PROP Output_Dir "SH3Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\video_output" +# PROP Output_Dir "SH3Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\video_output" +# PROP Output_Dir "ARMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\video_output" +# PROP Output_Dir "ARMDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\video_output" +# PROP Output_Dir "X86EMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\video_output" +# PROP Output_Dir "X86EMDbg\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\vout_pictures.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\video_output" +# PROP Output_Dir "MIPSRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\video_output" +# PROP Output_Dir "MIPSDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\video_output" +# PROP Output_Dir "SH4Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\video_output" +# PROP Output_Dir "SH4Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\video_output" +# PROP Output_Dir "SH3Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\video_output" +# PROP Output_Dir "SH3Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\video_output" +# PROP Output_Dir "ARMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\video_output" +# PROP Output_Dir "ARMDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\video_output" +# PROP Output_Dir "X86EMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\video_output" +# PROP Output_Dir "X86EMDbg\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\vout_pictures.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\video_output" +# PROP Output_Dir "MIPSRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\video_output" +# PROP Output_Dir "MIPSDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\video_output" +# PROP Output_Dir "SH4Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\video_output" +# PROP Output_Dir "SH4Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\video_output" +# PROP Output_Dir "SH3Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\video_output" +# PROP Output_Dir "SH3Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\video_output" +# PROP Output_Dir "ARMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\video_output" +# PROP Output_Dir "ARMDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\video_output" +# PROP Output_Dir "X86EMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\video_output" +# PROP Output_Dir "X86EMDbg\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\video_text.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\video_output" +# PROP Output_Dir "MIPSRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\video_output" +# PROP Output_Dir "MIPSDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\video_output" +# PROP Output_Dir "SH4Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\video_output" +# PROP Output_Dir "SH4Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\video_output" +# PROP Output_Dir "SH3Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\video_output" +# PROP Output_Dir "SH3Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\video_output" +# PROP Output_Dir "ARMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\video_output" +# PROP Output_Dir "ARMDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\video_output" +# PROP Output_Dir "X86EMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\video_output" +# PROP Output_Dir "X86EMDbg\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\video_text.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\video_output" +# PROP Output_Dir "MIPSRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\video_output" +# PROP Output_Dir "MIPSDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\video_output" +# PROP Output_Dir "SH4Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\video_output" +# PROP Output_Dir "SH4Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\video_output" +# PROP Output_Dir "SH3Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\video_output" +# PROP Output_Dir "SH3Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\video_output" +# PROP Output_Dir "ARMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\video_output" +# PROP Output_Dir "ARMDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\video_output" +# PROP Output_Dir "X86EMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\video_output" +# PROP Output_Dir "X86EMDbg\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\vout_subpictures.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" +# PROP Intermediate_Dir "MIPSRel\video_output" +# PROP Output_Dir "MIPSRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" +# PROP Intermediate_Dir "MIPSDbg\video_output" +# PROP Output_Dir "MIPSDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" +# PROP Intermediate_Dir "SH4Rel\video_output" +# PROP Output_Dir "SH4Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" +# PROP Intermediate_Dir "SH4Dbg\video_output" +# PROP Output_Dir "SH4Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" +# PROP Intermediate_Dir "SH3Rel\video_output" +# PROP Output_Dir "SH3Rel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" +# PROP Intermediate_Dir "SH3Dbg\video_output" +# PROP Output_Dir "SH3Dbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" +# PROP Intermediate_Dir "ARMRel\video_output" +# PROP Output_Dir "ARMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" +# PROP Intermediate_Dir "ARMDbg\video_output" +# PROP Output_Dir "ARMDbg\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" +# PROP Intermediate_Dir "X86EMRel\video_output" +# PROP Output_Dir "X86EMRel\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" +# PROP Intermediate_Dir "X86EMDbg\video_output" +# PROP Output_Dir "X86EMDbg\video_output" +!ENDIF +# End Source File +# End Group +# End Group +# Begin Group "Header Files" +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File +SOURCE="..\include\aout_internal.h" +# End Source File +# Begin Source File +SOURCE="..\include\audio_output.h" +# End Source File +# Begin Source File +SOURCE="..\include\beos_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\configuration.h" +# End Source File +# Begin Source File +SOURCE="..\include\darwin_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\codecs.h" +# End Source File +# Begin Source File +SOURCE="..\include\error.h" +# End Source File +# Begin Source File +SOURCE="..\include\input_ext-dec.h" +# End Source File +# Begin Source File +SOURCE="..\include\input_ext-intf.h" +# End Source File +# Begin Source File +SOURCE="..\include\input_ext-plugins.h" +# End Source File +# Begin Source File +SOURCE="..\include\interface.h" +# End Source File +# Begin Source File +SOURCE="..\include\intf_eject.h" +# End Source File +# Begin Source File +SOURCE="..\include\iso_lang.h" +# End Source File +# Begin Source File +SOURCE="..\include\main.h" +# End Source File +# Begin Source File +SOURCE="..\include\mmx.h" +# End Source File +# Begin Source File +SOURCE="..\include\modules.h" +# End Source File +# Begin Source File +SOURCE="..\include\modules_inner.h" +# End Source File +# Begin Source File +SOURCE="..\include\mtime.h" +# End Source File +# Begin Source File +SOURCE="..\include\netutils.h" +# End Source File +# Begin Source File +SOURCE="..\include\network.h" +# End Source File +# Begin Source File +SOURCE="..\include\os_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\stream_control.h" +# End Source File +# Begin Source File +SOURCE="..\include\stream_output.h" +# End Source File +# Begin Source File +SOURCE="..\include\variables.h" +# End Source File +# Begin Source File +SOURCE="..\include\video.h" +# End Source File +# Begin Source File +SOURCE="..\include\video_output.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_common.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_config.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_cpu.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_messages.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_objects.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_playlist.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_threads.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_threads_funcs.h" +# End Source File +# Begin Source File +SOURCE="..\include\win32_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_symbols.h" +# End Source File +# Begin Group "vlc" +# Begin Source File +SOURCE="..\include\vlc\vlc.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\aout.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\vout.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\sout.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\decoder.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\input.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\intf.h" +# End Source File +# End Group +# End Group +# End Target +# End Project diff --git a/evc/libvlc.vcp.in b/evc/libvlc.vcp.in new file mode 100644 index 0000000000..0f132845f0 --- /dev/null +++ b/evc/libvlc.vcp.in @@ -0,0 +1,316 @@ +# Microsoft eMbedded Visual Tools Project File - Name="libvlc" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE SH4) Static Library" 0x8604 +# TARGTYPE "Win32 (WCE MIPS) Static Library" 0x8204 +# TARGTYPE "Win32 (WCE x86em) Static Library" 0x7f04 +# TARGTYPE "Win32 (WCE ARM) Static Library" 0x8504 +# TARGTYPE "Win32 (WCE SH3) Static Library" 0x8104 + +CFG=libvlc - Win32 (WCE MIPS) Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libvlc.vcn". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libvlc.vcn" CFG="libvlc - Win32 (WCE MIPS) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libvlc - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Static Library") +!MESSAGE "libvlc - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Static Library") +!MESSAGE "libvlc - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Static Library") +!MESSAGE "libvlc - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Static Library") +!MESSAGE "libvlc - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Static Library") +!MESSAGE "libvlc - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Static Library") +!MESSAGE "libvlc - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSRel" +# PROP BASE Intermediate_Dir "MIPSRel" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSRel" +# PROP Intermediate_Dir "MIPSRel" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSDbg" +# PROP BASE Intermediate_Dir "MIPSDbg" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSDbg" +# PROP Intermediate_Dir "MIPSDbg" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH4Rel" +# PROP BASE Intermediate_Dir "SH4Rel" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH4Rel" +# PROP Intermediate_Dir "SH4Rel" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH4Dbg" +# PROP BASE Intermediate_Dir "SH4Dbg" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH4Dbg" +# PROP Intermediate_Dir "SH4Dbg" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH3Rel" +# PROP BASE Intermediate_Dir "SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH3Rel" +# PROP Intermediate_Dir "SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH3Dbg" +# PROP BASE Intermediate_Dir "SH3Dbg" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH3Dbg" +# PROP Intermediate_Dir "SH3Dbg" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMRel" +# PROP BASE Intermediate_Dir "ARMRel" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMRel" +# PROP Intermediate_Dir "ARMRel" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMDbg" +# PROP BASE Intermediate_Dir "ARMDbg" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMDbg" +# PROP Intermediate_Dir "ARMDbg" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "X86EMRel" +# PROP BASE Intermediate_Dir "X86EMRel" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "X86EMRel" +# PROP Intermediate_Dir "X86EMRel" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86EMDbg" +# PROP BASE Intermediate_Dir "X86EMDbg" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86EMDbg" +# PROP Intermediate_Dir "X86EMDbg" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo + +!ENDIF + +# Begin Target + +# Name "libvlc - Win32 (WCE MIPS) Release" +# Name "libvlc - Win32 (WCE MIPS) Debug" +# Name "libvlc - Win32 (WCE SH4) Release" +# Name "libvlc - Win32 (WCE SH4) Debug" +# Name "libvlc - Win32 (WCE SH3) Release" +# Name "libvlc - Win32 (WCE SH3) Debug" +# Name "libvlc - Win32 (WCE ARM) Release" +# Name "libvlc - Win32 (WCE ARM) Debug" +# Name "libvlc - Win32 (WCE x86em) Release" +# Name "libvlc - Win32 (WCE x86em) Debug" + diff --git a/evc/plugins.vcp b/evc/plugins.vcp new file mode 100644 index 0000000000..a780bf0a9c --- /dev/null +++ b/evc/plugins.vcp @@ -0,0 +1,394 @@ +# Microsoft eMbedded Visual Tools Project File - Name="plugins" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE ARM) Application" 0x8501 +# TARGTYPE "Win32 (WCE x86em) Application" 0x7f01 +# TARGTYPE "Win32 (WCE SH3) Application" 0x8101 +# TARGTYPE "Win32 (WCE SH4) Application" 0x8601 +# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201 + +CFG=plugins - Win32 (WCE MIPS) Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "plugins.vcn". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "plugins.vcn" CFG="plugins - Win32 (WCE MIPS) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "plugins - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Application") +!MESSAGE "plugins - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application") +!MESSAGE "plugins - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Application") +!MESSAGE "plugins - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Application") +!MESSAGE "plugins - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Application") +!MESSAGE "plugins - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application") +!MESSAGE "plugins - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application") +!MESSAGE "plugins - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application") +!MESSAGE "plugins - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Application") +!MESSAGE "plugins - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "plugins - Win32 (WCE MIPS) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSRel" +# PROP BASE Intermediate_Dir "MIPSRel" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSRel" +# PROP Intermediate_Dir "MIPSRel" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE MIPS) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSDbg" +# PROP BASE Intermediate_Dir "MIPSDbg" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSDbg" +# PROP Intermediate_Dir "MIPSDbg" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH4Rel" +# PROP BASE Intermediate_Dir "SH4Rel" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH4Rel" +# PROP Intermediate_Dir "SH4Rel" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Qsh4 /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Qsh4 /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH4Dbg" +# PROP BASE Intermediate_Dir "SH4Dbg" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH4Dbg" +# PROP Intermediate_Dir "SH4Dbg" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /Qsh4 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Qsh4 /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH3Rel" +# PROP BASE Intermediate_Dir "SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH3Rel" +# PROP Intermediate_Dir "SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH3Dbg" +# PROP BASE Intermediate_Dir "SH3Dbg" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH3Dbg" +# PROP Intermediate_Dir "SH3Dbg" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMRel" +# PROP BASE Intermediate_Dir "ARMRel" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMRel" +# PROP Intermediate_Dir "ARMRel" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMDbg" +# PROP BASE Intermediate_Dir "ARMDbg" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMDbg" +# PROP Intermediate_Dir "ARMDbg" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "X86EMRel" +# PROP BASE Intermediate_Dir "X86EMRel" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "X86EMRel" +# PROP Intermediate_Dir "X86EMRel" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Yu"stdafx.h" /Gz /Oxs /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Gz /Oxs /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86EMDbg" +# PROP BASE Intermediate_Dir "X86EMDbg" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86EMDbg" +# PROP Intermediate_Dir "X86EMDbg" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Yu"stdafx.h" /Gz /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Gz /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 + +!ENDIF + +# Begin Target + +# Name "plugins - Win32 (WCE MIPS) Release" +# Name "plugins - Win32 (WCE MIPS) Debug" +# Name "plugins - Win32 (WCE SH4) Release" +# Name "plugins - Win32 (WCE SH4) Debug" +# Name "plugins - Win32 (WCE SH3) Release" +# Name "plugins - Win32 (WCE SH3) Debug" +# Name "plugins - Win32 (WCE ARM) Release" +# Name "plugins - Win32 (WCE ARM) Debug" +# Name "plugins - Win32 (WCE x86em) Release" +# Name "plugins - Win32 (WCE x86em) Debug" + +# Begin Group "Source Files" +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# End Group +# Begin Group "Header Files" +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# End Group +# End Target +# End Project diff --git a/evc/plugins.vcp.in b/evc/plugins.vcp.in new file mode 100644 index 0000000000..f270012d8a --- /dev/null +++ b/evc/plugins.vcp.in @@ -0,0 +1,386 @@ +# Microsoft eMbedded Visual Tools Project File - Name="plugins" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE ARM) Application" 0x8501 +# TARGTYPE "Win32 (WCE x86em) Application" 0x7f01 +# TARGTYPE "Win32 (WCE SH3) Application" 0x8101 +# TARGTYPE "Win32 (WCE SH4) Application" 0x8601 +# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201 + +CFG=plugins - Win32 (WCE MIPS) Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "plugins.vcn". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "plugins.vcn" CFG="plugins - Win32 (WCE MIPS) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "plugins - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Application") +!MESSAGE "plugins - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application") +!MESSAGE "plugins - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Application") +!MESSAGE "plugins - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Application") +!MESSAGE "plugins - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Application") +!MESSAGE "plugins - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application") +!MESSAGE "plugins - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application") +!MESSAGE "plugins - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application") +!MESSAGE "plugins - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Application") +!MESSAGE "plugins - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "plugins - Win32 (WCE MIPS) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSRel" +# PROP BASE Intermediate_Dir "MIPSRel" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSRel" +# PROP Intermediate_Dir "MIPSRel" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE MIPS) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSDbg" +# PROP BASE Intermediate_Dir "MIPSDbg" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSDbg" +# PROP Intermediate_Dir "MIPSDbg" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH4Rel" +# PROP BASE Intermediate_Dir "SH4Rel" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH4Rel" +# PROP Intermediate_Dir "SH4Rel" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Qsh4 /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Qsh4 /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH4Dbg" +# PROP BASE Intermediate_Dir "SH4Dbg" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH4Dbg" +# PROP Intermediate_Dir "SH4Dbg" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /Qsh4 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Qsh4 /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH3Rel" +# PROP BASE Intermediate_Dir "SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH3Rel" +# PROP Intermediate_Dir "SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH3Dbg" +# PROP BASE Intermediate_Dir "SH3Dbg" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH3Dbg" +# PROP Intermediate_Dir "SH3Dbg" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMRel" +# PROP BASE Intermediate_Dir "ARMRel" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMRel" +# PROP Intermediate_Dir "ARMRel" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMDbg" +# PROP BASE Intermediate_Dir "ARMDbg" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMDbg" +# PROP Intermediate_Dir "ARMDbg" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "X86EMRel" +# PROP BASE Intermediate_Dir "X86EMRel" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "X86EMRel" +# PROP Intermediate_Dir "X86EMRel" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Yu"stdafx.h" /Gz /Oxs /c +# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Gz /Oxs /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 + +!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86EMDbg" +# PROP BASE Intermediate_Dir "X86EMDbg" +# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86EMDbg" +# PROP Intermediate_Dir "X86EMDbg" +# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Yu"stdafx.h" /Gz /c +# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Gz /c +# SUBTRACT CPP /YX /Yc /Yu +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86 + +!ENDIF + +# Begin Target + +# Name "plugins - Win32 (WCE MIPS) Release" +# Name "plugins - Win32 (WCE MIPS) Debug" +# Name "plugins - Win32 (WCE SH4) Release" +# Name "plugins - Win32 (WCE SH4) Debug" +# Name "plugins - Win32 (WCE SH3) Release" +# Name "plugins - Win32 (WCE SH3) Debug" +# Name "plugins - Win32 (WCE ARM) Release" +# Name "plugins - Win32 (WCE ARM) Debug" +# Name "plugins - Win32 (WCE x86em) Release" +# Name "plugins - Win32 (WCE x86em) Debug" + diff --git a/evc/vlc.c b/evc/vlc.c index 6ca4202736..bd62d392b9 100644 --- a/evc/vlc.c +++ b/evc/vlc.c @@ -2,7 +2,7 @@ * vlc.c: the vlc player, WinCE version ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: vlc.c,v 1.1 2002/11/13 15:28:24 sam Exp $ + * $Id: vlc.c,v 1.2 2002/11/13 20:51:04 sam Exp $ * * Authors: Samuel Hocevar * @@ -88,7 +88,8 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, window = CreateWindow( L"VLC", pwz_title, WS_VISIBLE | WS_SIZEBOX | WS_CAPTION, CW_USEDEFAULT, CW_USEDEFAULT, - CW_USEDEFAULT, CW_USEDEFAULT, + //CW_USEDEFAULT, CW_USEDEFAULT, + 200,100, NULL, NULL, hInst, NULL ); ShowWindow( window, nCmdShow ); @@ -218,7 +219,7 @@ static long FAR PASCAL WndProc ( HWND hWnd, UINT message, case WM_CREATE: hwndCB = CommandBar_Create(hInst, hWnd, 1); CommandBar_InsertMenubar(hwndCB, hInst, IDM_MENU, 0); - CommandBar_AddAdornments(hwndCB, 0, 0); + //CommandBar_AddAdornments(hwndCB, 0, 0); break; case WM_PAINT: { diff --git a/evc/vlc.vcp b/evc/vlc.vcp index dd5be5f2e1..489d543a1d 100644 --- a/evc/vlc.vcp +++ b/evc/vlc.vcp @@ -386,1712 +386,10 @@ LINK32=link.exe # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Group "vlc" # Begin Source File SOURCE="..\evc\vlc.c" # End Source File # End Group -# Begin Group "libvlc" -# Begin Source File -SOURCE="..\src\libvlc.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -# End Source File -# Begin Source File -SOURCE="..\src\libvlc.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -# End Source File -# Begin Group "audio_output" -# Begin Source File -SOURCE="..\src\audio_output\common.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\dec.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\filters.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\input.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\mixer.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\output.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\intf.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# End Group -# Begin Group "extras" -# Begin Source File -SOURCE="..\src\extras\dirent.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\dirent.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\getopt.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\getopt.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\getopt1.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\libc.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# End Group -# Begin Group "input" -# Begin Source File -SOURCE="..\src\input\input.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_ext-plugins.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_ext-dec.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_ext-intf.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_dec.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_programs.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_clock.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_info.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# End Group -# Begin Group "interface" -# Begin Source File -SOURCE="..\src\interface\interface.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\interface\intf_eject.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ENDIF -# End Source File -# End Group -# Begin Group "misc" -# Begin Source File -SOURCE="..\src\misc\mtime.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\modules.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\threads.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\cpu.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\configuration.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\netutils.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\iso_lang.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\iso-639_def.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\messages.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\objects.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\variables.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\error.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\win32_specific.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# End Group -# Begin Group "playlist" -# Begin Source File -SOURCE="..\src\playlist\playlist.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\playlist" -# PROP Output_Dir "Release\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\playlist" -# PROP Output_Dir "Debug\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\playlist" -# PROP Output_Dir "Release\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\playlist" -# PROP Output_Dir "Debug\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\playlist" -# PROP Output_Dir "Release\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\playlist" -# PROP Output_Dir "Debug\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\playlist" -# PROP Output_Dir "Release\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\playlist" -# PROP Output_Dir "Debug\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\playlist" -# PROP Output_Dir "Release\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\playlist" -# PROP Output_Dir "Debug\playlist" -!ENDIF -# End Source File -# End Group -# Begin Group "stream_output" -# Begin Source File -SOURCE="..\src\stream_output\stream_output.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\stream_output" -# PROP Output_Dir "Release\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\stream_output" -# PROP Output_Dir "Debug\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\stream_output" -# PROP Output_Dir "Release\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\stream_output" -# PROP Output_Dir "Debug\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\stream_output" -# PROP Output_Dir "Release\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\stream_output" -# PROP Output_Dir "Debug\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\stream_output" -# PROP Output_Dir "Release\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\stream_output" -# PROP Output_Dir "Debug\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\stream_output" -# PROP Output_Dir "Release\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\stream_output" -# PROP Output_Dir "Debug\stream_output" -!ENDIF -# End Source File -# End Group -# Begin Group "video_output" -# Begin Source File -SOURCE="..\src\video_output\video_output.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\vout_pictures.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\vout_pictures.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\video_text.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\video_text.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\vout_subpictures.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# End Group -# End Group -# End Group -# Begin Group "Header Files" -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File -SOURCE="..\include\aout_internal.h" -# End Source File -# Begin Source File -SOURCE="..\include\audio_output.h" -# End Source File -# Begin Source File -SOURCE="..\include\beos_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\configuration.h" -# End Source File -# Begin Source File -SOURCE="..\include\darwin_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\codecs.h" -# End Source File -# Begin Source File -SOURCE="..\include\error.h" -# End Source File -# Begin Source File -SOURCE="..\include\input_ext-dec.h" -# End Source File -# Begin Source File -SOURCE="..\include\input_ext-intf.h" -# End Source File -# Begin Source File -SOURCE="..\include\input_ext-plugins.h" -# End Source File -# Begin Source File -SOURCE="..\include\interface.h" -# End Source File -# Begin Source File -SOURCE="..\include\intf_eject.h" -# End Source File -# Begin Source File -SOURCE="..\include\iso_lang.h" -# End Source File -# Begin Source File -SOURCE="..\include\main.h" -# End Source File -# Begin Source File -SOURCE="..\include\mmx.h" -# End Source File -# Begin Source File -SOURCE="..\include\modules.h" -# End Source File -# Begin Source File -SOURCE="..\include\modules_inner.h" -# End Source File -# Begin Source File -SOURCE="..\include\mtime.h" -# End Source File -# Begin Source File -SOURCE="..\include\netutils.h" -# End Source File -# Begin Source File -SOURCE="..\include\network.h" -# End Source File -# Begin Source File -SOURCE="..\include\os_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\stream_control.h" -# End Source File -# Begin Source File -SOURCE="..\include\stream_output.h" -# End Source File -# Begin Source File -SOURCE="..\include\variables.h" -# End Source File -# Begin Source File -SOURCE="..\include\video.h" -# End Source File -# Begin Source File -SOURCE="..\include\video_output.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_common.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_config.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_cpu.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_messages.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_objects.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_playlist.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_threads.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_threads_funcs.h" -# End Source File -# Begin Source File -SOURCE="..\include\win32_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_symbols.h" -# End Source File -# Begin Group "vlc" -# Begin Source File -SOURCE="..\include\vlc\vlc.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\aout.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\vout.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\sout.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\decoder.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\input.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\intf.h" -# End Source File -# End Group -# End Group # Begin Group "Resource Files" diff --git a/evc/vlc.vcw b/evc/vlc.vcw index 30c9e0d966..7269f588c7 100644 --- a/evc/vlc.vcw +++ b/evc/vlc.vcw @@ -3,6 +3,45 @@ Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00 ############################################################################### +Project: "libvlc"=.\libvlc.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "plugin_foo"=.\plugin_foo\plugin_foo.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "plugins"=.\plugins.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name libvlc + End Project Dependency +}}} + +############################################################################### + Project: "vlc"=.\vlc.vcp - Package Owner=<4> Package=<5> @@ -11,6 +50,9 @@ Package=<5> Package=<4> {{{ + Begin Project Dependency + Project_Dep_Name libvlc + End Project Dependency }}} ############################################################################### diff --git a/include/aout_internal.h b/include/aout_internal.h index 3db013e3de..a5c388c843 100644 --- a/include/aout_internal.h +++ b/include/aout_internal.h @@ -2,7 +2,7 @@ * aout_internal.h : internal defines for audio output ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: aout_internal.h,v 1.32 2002/11/11 22:27:00 gbazin Exp $ + * $Id: aout_internal.h,v 1.33 2002/11/13 20:51:04 sam Exp $ * * Authors: Christophe Massiot * @@ -54,8 +54,8 @@ typedef struct aout_alloc_t else \ { \ int i_alloc_size; \ - i_alloc_size = (uint64_t)(p_alloc)->i_bytes_per_sec \ - * (i_nb_usec) / 1000000 + 1; \ + i_alloc_size = (int)( (uint64_t)(p_alloc)->i_bytes_per_sec \ + * (i_nb_usec) / 1000000 + 1 ); \ ALLOCA_TEST( p_alloc, p_new_buffer ) \ { \ (p_new_buffer) = malloc( i_alloc_size + sizeof(aout_buffer_t) );\ diff --git a/msvc/config.h b/msvc/config.h index 25301ff8b9..dd33b86ece 100644 --- a/msvc/config.h +++ b/msvc/config.h @@ -506,3 +506,5 @@ #define HAVE_GETENV 1 +#define HAVE_ATOF 1 + diff --git a/msvc/libvlc.dsp b/msvc/libvlc.dsp new file mode 100644 index 0000000000..bf7d8f03b6 --- /dev/null +++ b/msvc/libvlc.dsp @@ -0,0 +1,730 @@ +# Microsoft Developer Studio Project File - Name="libvlc" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=libvlc - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libvlc.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libvlc.mak" CFG="libvlc - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libvlc - Win32 Release" (based on "Win32 (x86) Static Library") +!MESSAGE "libvlc - Win32 Debug" (based on "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "libvlc - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ENDIF + +# Begin Target + +# Name "libvlc - Win32 Release" +# Name "libvlc - Win32 Debug" + +# Begin Group "Source Files" +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File +SOURCE="..\src\libvlc.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +# End Source File +# Begin Source File +SOURCE="..\src\libvlc.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +# End Source File +# Begin Group "audio_output" +# Begin Source File +SOURCE="..\src\audio_output\common.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\dec.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\filters.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\input.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\mixer.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\output.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\audio_output\intf.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\audio_output" +# PROP Output_Dir "Release\audio_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\audio_output" +# PROP Output_Dir "Debug\audio_output" +!ENDIF +# End Source File +# End Group +# Begin Group "extras" +# Begin Source File +SOURCE="..\src\extras\dirent.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\extras" +# PROP Output_Dir "Release\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\extras" +# PROP Output_Dir "Debug\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\dirent.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\extras" +# PROP Output_Dir "Release\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\extras" +# PROP Output_Dir "Debug\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\getopt.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\extras" +# PROP Output_Dir "Release\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\extras" +# PROP Output_Dir "Debug\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\getopt.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\extras" +# PROP Output_Dir "Release\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\extras" +# PROP Output_Dir "Debug\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\getopt1.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\extras" +# PROP Output_Dir "Release\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\extras" +# PROP Output_Dir "Debug\extras" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\extras\libc.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\extras" +# PROP Output_Dir "Release\extras" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\extras" +# PROP Output_Dir "Debug\extras" +!ENDIF +# End Source File +# End Group +# Begin Group "input" +# Begin Source File +SOURCE="..\src\input\input.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_ext-plugins.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_ext-dec.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_ext-intf.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_dec.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_programs.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_clock.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\input\input_info.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\input" +# PROP Output_Dir "Release\input" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\input" +# PROP Output_Dir "Debug\input" +!ENDIF +# End Source File +# End Group +# Begin Group "interface" +# Begin Source File +SOURCE="..\src\interface\interface.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\interface" +# PROP Output_Dir "Release\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\interface" +# PROP Output_Dir "Debug\interface" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\interface\intf_eject.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\interface" +# PROP Output_Dir "Release\interface" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\interface" +# PROP Output_Dir "Debug\interface" +!ENDIF +# End Source File +# End Group +# Begin Group "misc" +# Begin Source File +SOURCE="..\src\misc\mtime.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\modules.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\threads.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\cpu.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\configuration.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\netutils.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\iso_lang.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\iso-639_def.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\messages.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\objects.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\variables.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\error.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\misc\win32_specific.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\misc" +# PROP Output_Dir "Release\misc" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\misc" +# PROP Output_Dir "Debug\misc" +!ENDIF +# End Source File +# End Group +# Begin Group "playlist" +# Begin Source File +SOURCE="..\src\playlist\playlist.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\playlist" +# PROP Output_Dir "Release\playlist" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\playlist" +# PROP Output_Dir "Debug\playlist" +!ENDIF +# End Source File +# End Group +# Begin Group "stream_output" +# Begin Source File +SOURCE="..\src\stream_output\stream_output.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\stream_output" +# PROP Output_Dir "Release\stream_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\stream_output" +# PROP Output_Dir "Debug\stream_output" +!ENDIF +# End Source File +# End Group +# Begin Group "video_output" +# Begin Source File +SOURCE="..\src\video_output\video_output.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\video_output" +# PROP Output_Dir "Release\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\video_output" +# PROP Output_Dir "Debug\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\vout_pictures.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\video_output" +# PROP Output_Dir "Release\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\video_output" +# PROP Output_Dir "Debug\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\vout_pictures.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\video_output" +# PROP Output_Dir "Release\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\video_output" +# PROP Output_Dir "Debug\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\video_text.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\video_output" +# PROP Output_Dir "Release\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\video_output" +# PROP Output_Dir "Debug\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\video_text.h" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\video_output" +# PROP Output_Dir "Release\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\video_output" +# PROP Output_Dir "Debug\video_output" +!ENDIF +# End Source File +# Begin Source File +SOURCE="..\src\video_output\vout_subpictures.c" +# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" +!IF "$(CFG)" == "vlc - Win32 Release" +# PROP Intermediate_Dir "Release\video_output" +# PROP Output_Dir "Release\video_output" +!ELSEIF "$(CFG)" == "vlc - Win32 Debug" +# PROP Intermediate_Dir "Debug\video_output" +# PROP Output_Dir "Debug\video_output" +!ENDIF +# End Source File +# End Group +# End Group +# Begin Group "Header Files" +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File +SOURCE="..\include\aout_internal.h" +# End Source File +# Begin Source File +SOURCE="..\include\audio_output.h" +# End Source File +# Begin Source File +SOURCE="..\include\beos_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\configuration.h" +# End Source File +# Begin Source File +SOURCE="..\include\darwin_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\codecs.h" +# End Source File +# Begin Source File +SOURCE="..\include\error.h" +# End Source File +# Begin Source File +SOURCE="..\include\input_ext-dec.h" +# End Source File +# Begin Source File +SOURCE="..\include\input_ext-intf.h" +# End Source File +# Begin Source File +SOURCE="..\include\input_ext-plugins.h" +# End Source File +# Begin Source File +SOURCE="..\include\interface.h" +# End Source File +# Begin Source File +SOURCE="..\include\intf_eject.h" +# End Source File +# Begin Source File +SOURCE="..\include\iso_lang.h" +# End Source File +# Begin Source File +SOURCE="..\include\main.h" +# End Source File +# Begin Source File +SOURCE="..\include\mmx.h" +# End Source File +# Begin Source File +SOURCE="..\include\modules.h" +# End Source File +# Begin Source File +SOURCE="..\include\modules_inner.h" +# End Source File +# Begin Source File +SOURCE="..\include\mtime.h" +# End Source File +# Begin Source File +SOURCE="..\include\netutils.h" +# End Source File +# Begin Source File +SOURCE="..\include\network.h" +# End Source File +# Begin Source File +SOURCE="..\include\os_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\stream_control.h" +# End Source File +# Begin Source File +SOURCE="..\include\stream_output.h" +# End Source File +# Begin Source File +SOURCE="..\include\variables.h" +# End Source File +# Begin Source File +SOURCE="..\include\video.h" +# End Source File +# Begin Source File +SOURCE="..\include\video_output.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_common.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_config.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_cpu.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_messages.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_objects.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_playlist.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_threads.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_threads_funcs.h" +# End Source File +# Begin Source File +SOURCE="..\include\win32_specific.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc_symbols.h" +# End Source File +# Begin Group "vlc" +# Begin Source File +SOURCE="..\include\vlc\vlc.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\aout.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\vout.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\sout.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\decoder.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\input.h" +# End Source File +# Begin Source File +SOURCE="..\include\vlc\intf.h" +# End Source File +# End Group +# End Group +# End Target +# End Project diff --git a/msvc/libvlc.dsp.in b/msvc/libvlc.dsp.in new file mode 100644 index 0000000000..3519020f0d --- /dev/null +++ b/msvc/libvlc.dsp.in @@ -0,0 +1,83 @@ +# Microsoft Developer Studio Project File - Name="libvlc" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=libvlc - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libvlc.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libvlc.mak" CFG="libvlc - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libvlc - Win32 Release" (based on "Win32 (x86) Static Library") +!MESSAGE "libvlc - Win32 Debug" (based on "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "libvlc - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ELSEIF "$(CFG)" == "libvlc - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ENDIF + +# Begin Target + +# Name "libvlc - Win32 Release" +# Name "libvlc - Win32 Debug" + diff --git a/msvc/plugins.dsp b/msvc/plugins.dsp new file mode 100644 index 0000000000..ddb7d065d6 --- /dev/null +++ b/msvc/plugins.dsp @@ -0,0 +1,94 @@ +# Microsoft Developer Studio Project File - Name="plugins" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=plugins - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "plugins.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "plugins.mak" CFG="plugins - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "plugins - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "plugins - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "plugins - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c +# ADD BASE RSC /l 0x414 /d "NDEBUG" +# ADD RSC /l 0x414 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /machine:I386 + +!ELSEIF "$(CFG)" == "plugins - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c +# ADD BASE RSC /l 0x414 /d "_DEBUG" +# ADD RSC /l 0x809 /i "../" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "plugins - Win32 Release" +# Name "plugins - Win32 Debug" + +# Begin Group "Source Files" +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# End Group +# Begin Group "Header Files" +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# End Group +# End Target +# End Project diff --git a/msvc/plugins.dsp.in b/msvc/plugins.dsp.in new file mode 100644 index 0000000000..b5330d70d2 --- /dev/null +++ b/msvc/plugins.dsp.in @@ -0,0 +1,86 @@ +# Microsoft Developer Studio Project File - Name="plugins" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=plugins - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "plugins.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "plugins.mak" CFG="plugins - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "plugins - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "plugins - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "plugins - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c +# ADD BASE RSC /l 0x414 /d "NDEBUG" +# ADD RSC /l 0x414 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /machine:I386 + +!ELSEIF "$(CFG)" == "plugins - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c +# ADD BASE RSC /l 0x414 /d "_DEBUG" +# ADD RSC /l 0x809 /i "../" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "plugins - Win32 Release" +# Name "plugins - Win32 Debug" + diff --git a/msvc/vlc.dsp b/msvc/vlc.dsp index 3abbd5abec..33a9a806f8 100644 --- a/msvc/vlc.dsp +++ b/msvc/vlc.dsp @@ -42,7 +42,7 @@ RSC=rc.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE RSC /l 0x414 /d "NDEBUG" # ADD RSC /l 0x414 /d "NDEBUG" BSC32=bscmake.exe @@ -66,7 +66,7 @@ LINK32=link.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c # ADD BASE RSC /l 0x414 /d "_DEBUG" # ADD RSC /l 0x809 /i "../" /d "_DEBUG" BSC32=bscmake.exe @@ -86,656 +86,10 @@ LINK32=link.exe # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Group "vlc" # Begin Source File SOURCE="..\src\vlc.c" # End Source File # End Group -# Begin Group "libvlc" -# Begin Source File -SOURCE="..\src\libvlc.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -# End Source File -# Begin Source File -SOURCE="..\src\libvlc.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -# End Source File -# Begin Group "audio_output" -# Begin Source File -SOURCE="..\src\audio_output\common.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\dec.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\filters.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\input.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\mixer.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\output.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\audio_output\intf.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\audio_output" -# PROP Output_Dir "Release\audio_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\audio_output" -# PROP Output_Dir "Debug\audio_output" -!ENDIF -# End Source File -# End Group -# Begin Group "extras" -# Begin Source File -SOURCE="..\src\extras\dirent.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\dirent.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\getopt.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\getopt.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\getopt1.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\extras\libc.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\extras" -# PROP Output_Dir "Release\extras" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\extras" -# PROP Output_Dir "Debug\extras" -!ENDIF -# End Source File -# End Group -# Begin Group "input" -# Begin Source File -SOURCE="..\src\input\input.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_ext-plugins.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_ext-dec.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_ext-intf.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_dec.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_programs.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_clock.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\input\input_info.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\input" -# PROP Output_Dir "Release\input" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\input" -# PROP Output_Dir "Debug\input" -!ENDIF -# End Source File -# End Group -# Begin Group "interface" -# Begin Source File -SOURCE="..\src\interface\interface.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\interface\intf_eject.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\interface" -# PROP Output_Dir "Release\interface" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\interface" -# PROP Output_Dir "Debug\interface" -!ENDIF -# End Source File -# End Group -# Begin Group "misc" -# Begin Source File -SOURCE="..\src\misc\mtime.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\modules.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\threads.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\cpu.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\configuration.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\netutils.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\iso_lang.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\iso-639_def.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\messages.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\objects.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\variables.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\error.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\misc\win32_specific.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\misc" -# PROP Output_Dir "Release\misc" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\misc" -# PROP Output_Dir "Debug\misc" -!ENDIF -# End Source File -# End Group -# Begin Group "playlist" -# Begin Source File -SOURCE="..\src\playlist\playlist.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\playlist" -# PROP Output_Dir "Release\playlist" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\playlist" -# PROP Output_Dir "Debug\playlist" -!ENDIF -# End Source File -# End Group -# Begin Group "stream_output" -# Begin Source File -SOURCE="..\src\stream_output\stream_output.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\stream_output" -# PROP Output_Dir "Release\stream_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\stream_output" -# PROP Output_Dir "Debug\stream_output" -!ENDIF -# End Source File -# End Group -# Begin Group "video_output" -# Begin Source File -SOURCE="..\src\video_output\video_output.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\vout_pictures.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\vout_pictures.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\video_text.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\video_text.h" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# Begin Source File -SOURCE="..\src\video_output\vout_subpictures.c" -# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\" -!IF "$(CFG)" == "vlc - Win32 Release" -# PROP Intermediate_Dir "Release\video_output" -# PROP Output_Dir "Release\video_output" -!ELSEIF "$(CFG)" == "vlc - Win32 Debug" -# PROP Intermediate_Dir "Debug\video_output" -# PROP Output_Dir "Debug\video_output" -!ENDIF -# End Source File -# End Group -# End Group -# End Group -# Begin Group "Header Files" -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File -SOURCE="..\include\aout_internal.h" -# End Source File -# Begin Source File -SOURCE="..\include\audio_output.h" -# End Source File -# Begin Source File -SOURCE="..\include\beos_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\configuration.h" -# End Source File -# Begin Source File -SOURCE="..\include\darwin_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\codecs.h" -# End Source File -# Begin Source File -SOURCE="..\include\error.h" -# End Source File -# Begin Source File -SOURCE="..\include\input_ext-dec.h" -# End Source File -# Begin Source File -SOURCE="..\include\input_ext-intf.h" -# End Source File -# Begin Source File -SOURCE="..\include\input_ext-plugins.h" -# End Source File -# Begin Source File -SOURCE="..\include\interface.h" -# End Source File -# Begin Source File -SOURCE="..\include\intf_eject.h" -# End Source File -# Begin Source File -SOURCE="..\include\iso_lang.h" -# End Source File -# Begin Source File -SOURCE="..\include\main.h" -# End Source File -# Begin Source File -SOURCE="..\include\mmx.h" -# End Source File -# Begin Source File -SOURCE="..\include\modules.h" -# End Source File -# Begin Source File -SOURCE="..\include\modules_inner.h" -# End Source File -# Begin Source File -SOURCE="..\include\mtime.h" -# End Source File -# Begin Source File -SOURCE="..\include\netutils.h" -# End Source File -# Begin Source File -SOURCE="..\include\network.h" -# End Source File -# Begin Source File -SOURCE="..\include\os_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\stream_control.h" -# End Source File -# Begin Source File -SOURCE="..\include\stream_output.h" -# End Source File -# Begin Source File -SOURCE="..\include\variables.h" -# End Source File -# Begin Source File -SOURCE="..\include\video.h" -# End Source File -# Begin Source File -SOURCE="..\include\video_output.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_common.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_config.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_cpu.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_messages.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_objects.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_playlist.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_threads.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_threads_funcs.h" -# End Source File -# Begin Source File -SOURCE="..\include\win32_specific.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc_symbols.h" -# End Source File -# Begin Group "vlc" -# Begin Source File -SOURCE="..\include\vlc\vlc.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\aout.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\vout.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\sout.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\decoder.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\input.h" -# End Source File -# Begin Source File -SOURCE="..\include\vlc\intf.h" -# End Source File -# End Group -# End Group # Begin Group "Resource Files" diff --git a/msvc/vlc.dsp.in b/msvc/vlc.dsp.in index e74381408d..6b72ff3a81 100644 --- a/msvc/vlc.dsp.in +++ b/msvc/vlc.dsp.in @@ -42,7 +42,7 @@ RSC=rc.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE RSC /l 0x414 /d "NDEBUG" # ADD RSC /l 0x414 /d "NDEBUG" BSC32=bscmake.exe @@ -66,7 +66,7 @@ LINK32=link.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c # ADD BASE RSC /l 0x414 /d "_DEBUG" # ADD RSC /l 0x809 /i "../" /d "_DEBUG" BSC32=bscmake.exe diff --git a/msvc/vlc.dsw b/msvc/vlc.dsw index 8f56352ed7..348e0155a4 100644 --- a/msvc/vlc.dsw +++ b/msvc/vlc.dsw @@ -3,6 +3,30 @@ Microsoft Developer Studio Workspace File, Format Version 6.00 ############################################################################### +Project: "libvlc"=.\libvlc.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "plugins"=.\plugins.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + Project: "vlc"=.\vlc.dsp - Package Owner=<4> Package=<5> @@ -11,6 +35,9 @@ Package=<5> Package=<4> {{{ + Begin Project Dependency + Project_Dep_Name libvlc + End Project Dependency }}} ############################################################################### diff --git a/share/vlc_wince_rc.rc b/share/vlc_wince_rc.rc index 924881a4f4..442e859d4c 100644 --- a/share/vlc_wince_rc.rc +++ b/share/vlc_wince_rc.rc @@ -28,7 +28,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. -IDI_NIOUP ICON DISCARDABLE "nioup.ICO" +IDI_NIOUP ICON DISCARDABLE "vlc48x48.ico" #ifdef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// diff --git a/src/audio_output/common.c b/src/audio_output/common.c index 59d2107955..97155f4e56 100644 --- a/src/audio_output/common.c +++ b/src/audio_output/common.c @@ -2,7 +2,7 @@ * common.c : audio output management of common data structures ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: common.c,v 1.7 2002/11/12 13:57:13 sam Exp $ + * $Id: common.c,v 1.8 2002/11/13 20:51:04 sam Exp $ * * Authors: Christophe Massiot * @@ -404,7 +404,7 @@ mtime_t aout_DateIncrement( audio_date_t * p_date, u32 i_nb_samples ) { mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000; p_date->date += i_dividend / p_date->i_divider; - p_date->i_remainder += i_dividend % p_date->i_divider; + p_date->i_remainder += (int)(i_dividend % p_date->i_divider); if ( p_date->i_remainder >= p_date->i_divider ) { /* This is Bresenham algorithm. */ diff --git a/src/audio_output/input.c b/src/audio_output/input.c index 7bb8a2c929..d9cb774f44 100644 --- a/src/audio_output/input.c +++ b/src/audio_output/input.c @@ -2,7 +2,7 @@ * input.c : internal management of input streams for the audio output ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: input.c,v 1.20 2002/11/11 22:27:00 gbazin Exp $ + * $Id: input.c,v 1.21 2002/11/13 20:51:04 sam Exp $ * * Authors: Christophe Massiot * @@ -214,7 +214,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, mtime_t drift = p_buffer->start_date - start_date; p_input->i_resamp_start_date = mdate(); - p_input->i_resamp_start_drift = drift; + p_input->i_resamp_start_drift = (int)drift; if ( drift > 0 ) p_input->i_resampling_type = AOUT_RESAMPLING_DOWN; @@ -251,7 +251,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, msg_Warn( p_aout, "resampling stopped after "I64Fi" usec", mdate() - p_input->i_resamp_start_date ); } - else if( abs( p_buffer->start_date - start_date ) < + else if( abs( (int)(p_buffer->start_date - start_date) ) < abs( p_input->i_resamp_start_drift ) / 2 ) { /* if we reduced the drift from half, then it is time to switch @@ -263,7 +263,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, p_input->i_resamp_start_drift = 0; } else if( p_input->i_resamp_start_drift && - ( abs( p_buffer->start_date - start_date ) > + ( abs( (int)(p_buffer->start_date - start_date) ) > abs( p_input->i_resamp_start_drift ) * 3 / 2 ) ) { /* If the drift is increasing and not decreasing, than something diff --git a/src/audio_output/intf.c b/src/audio_output/intf.c index c5fcd43aa4..20bbef0cb0 100644 --- a/src/audio_output/intf.c +++ b/src/audio_output/intf.c @@ -2,7 +2,7 @@ * intf.c : audio output API towards the interface modules ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: intf.c,v 1.5 2002/10/20 12:23:48 massiot Exp $ + * $Id: intf.c,v 1.6 2002/11/13 20:51:04 sam Exp $ * * Authors: Christophe Massiot * @@ -213,7 +213,7 @@ int aout_VolumeDown( aout_instance_t * p_aout, int i_nb_steps, /* Meant to be called by the output plug-in's Open(). */ void aout_VolumeSoftInit( aout_instance_t * p_aout ) { - int i_volume; + audio_volume_t i_volume; p_aout->output.pf_volume_infos = aout_VolumeSoftInfos; p_aout->output.pf_volume_get = aout_VolumeSoftGet; diff --git a/src/audio_output/mixer.c b/src/audio_output/mixer.c index 13c7824c29..e251cc2932 100644 --- a/src/audio_output/mixer.c +++ b/src/audio_output/mixer.c @@ -2,7 +2,7 @@ * mixer.c : audio output mixing operations ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: mixer.c,v 1.19 2002/11/08 10:26:53 gbazin Exp $ + * $Id: mixer.c,v 1.20 2002/11/13 20:51:04 sam Exp $ * * Authors: Christophe Massiot * @@ -208,7 +208,7 @@ static int MixBuffer( aout_instance_t * p_aout ) { /* Additionally check that p_first_byte_to_mix is well * located. */ - unsigned long i_nb_bytes = (start_date - p_buffer->start_date) + mtime_t i_nb_bytes = (start_date - p_buffer->start_date) * p_aout->mixer.mixer.i_bytes_per_frame * p_aout->mixer.mixer.i_rate / p_aout->mixer.mixer.i_frame_length diff --git a/src/extras/dirent.c b/src/extras/dirent.c index 7150101b97..b70635c2b9 100644 --- a/src/extras/dirent.c +++ b/src/extras/dirent.c @@ -9,9 +9,9 @@ * Significantly revised and rewinddir, seekdir and telldir added by Colin * Peters * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * $Author: sam $ - * $Date: 2002/11/11 14:39:12 $ + * $Date: 2002/11/13 20:51:04 $ * */ @@ -181,7 +181,7 @@ readdir (DIR * dirp) { /* We haven't started the search yet. */ /* Start the search */ - dirp->dd_handle = FindFirstFile (dirp->dd_name, &(dirp->dd_dta)); + dirp->dd_handle = (long)FindFirstFile (dirp->dd_name, &(dirp->dd_dta)); if (dirp->dd_handle == -1) { @@ -197,10 +197,10 @@ readdir (DIR * dirp) else { /* Get the next search entry. */ - if (FindNextFile (dirp->dd_handle, &(dirp->dd_dta))) + if (FindNextFile ((HANDLE)dirp->dd_handle, &(dirp->dd_dta))) { /* We are off the end or otherwise error. */ - FindClose (dirp->dd_handle); + FindClose ((HANDLE)dirp->dd_handle); dirp->dd_handle = -1; dirp->dd_stat = -1; } @@ -246,7 +246,7 @@ closedir (DIR * dirp) if (dirp->dd_handle != -1) { - rc = FindClose (dirp->dd_handle); + rc = FindClose ((HANDLE)dirp->dd_handle); } /* Delete the dir structure. */ @@ -274,7 +274,7 @@ rewinddir (DIR * dirp) if (dirp->dd_handle != -1) { - FindClose (dirp->dd_handle); + FindClose ((HANDLE)dirp->dd_handle); } dirp->dd_handle = -1; @@ -331,7 +331,7 @@ seekdir (DIR * dirp, long lPos) /* Seek past end. */ if (dirp->dd_handle != -1) { - FindClose (dirp->dd_handle); + FindClose ((HANDLE)dirp->dd_handle); } dirp->dd_handle = -1; dirp->dd_stat = -1; diff --git a/src/extras/libc.c b/src/extras/libc.c index 3b26d24436..99c4464352 100644 --- a/src/extras/libc.c +++ b/src/extras/libc.c @@ -2,7 +2,7 @@ * libc.c: Extra libc function for some systems. ***************************************************************************** * Copyright (C) 2002 VideoLAN - * $Id: libc.c,v 1.2 2002/11/12 10:44:04 gbazin Exp $ + * $Id: libc.c,v 1.3 2002/11/13 20:51:04 sam Exp $ * * Authors: Jon Lech Johansen * Samuel Hocevar @@ -150,7 +150,7 @@ double atof( const char *nptr ) #if !defined( HAVE_LSEEK ) off_t lseek( int fildes, off_t offset, int whence ) { - return SetFilePointer( (HANDLE)fildes, offset, NULL, whence ); + return SetFilePointer( (HANDLE)fildes, (long)offset, NULL, whence ); } #endif diff --git a/src/input/input_ext-dec.c b/src/input/input_ext-dec.c index 79037f3dd8..9cf09e075c 100644 --- a/src/input/input_ext-dec.c +++ b/src/input/input_ext-dec.c @@ -2,7 +2,7 @@ * input_ext-dec.c: services to the decoders ***************************************************************************** * Copyright (C) 1998-2001 VideoLAN - * $Id: input_ext-dec.c,v 1.41 2002/11/11 14:39:12 sam Exp $ + * $Id: input_ext-dec.c,v 1.42 2002/11/13 20:51:05 sam Exp $ * * Authors: Christophe Massiot * @@ -203,7 +203,7 @@ void BitstreamNextDataPacket( bit_stream_t * p_bit_stream ) u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits ) { /* We just fill in the bit buffer. */ - while( p_bit_stream->fifo.i_available < i_bits ) + while( (unsigned int)p_bit_stream->fifo.i_available < i_bits ) { if( p_bit_stream->p_byte < p_bit_stream->p_end ) { @@ -221,7 +221,7 @@ u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits ) /* We are not aligned anymore. */ if( ((ptrdiff_t)p_bit_stream->p_byte & (sizeof(WORD_TYPE) - 1)) * 8 - < p_bit_stream->fifo.i_available ) + < (unsigned int)p_bit_stream->fifo.i_available ) { /* We are not aligned, and won't be. Copy the first word * of the packet in a temporary buffer, and we'll see diff --git a/src/input/input_ext-plugins.c b/src/input/input_ext-plugins.c index 1309c7bbf4..07e1b64c85 100644 --- a/src/input/input_ext-plugins.c +++ b/src/input/input_ext-plugins.c @@ -2,7 +2,7 @@ * input_ext-plugins.c: useful functions for access and demux plug-ins ***************************************************************************** * Copyright (C) 2001, 2002 VideoLAN - * $Id: input_ext-plugins.c,v 1.23 2002/11/12 13:57:13 sam Exp $ + * $Id: input_ext-plugins.c,v 1.24 2002/11/13 20:51:05 sam Exp $ * * Authors: Christophe Massiot * @@ -395,8 +395,8 @@ static inline pes_packet_t * NewPES( input_buffers_t * p_buffers ) } p_pes->p_next = NULL; - p_pes->b_data_alignment = p_pes->b_discontinuity = - p_pes->i_pts = p_pes->i_dts = 0; + p_pes->b_data_alignment = p_pes->b_discontinuity = VLC_FALSE; + p_pes->i_pts = p_pes->i_dts = 0; p_pes->p_first = p_pes->p_last = NULL; p_pes->i_pes_size = 0; p_pes->i_nb_data = 0; @@ -518,10 +518,10 @@ ssize_t input_FillBuffer( input_thread_t * p_input ) *****************************************************************************/ ssize_t input_Peek( input_thread_t * p_input, byte_t ** pp_byte, size_t i_size ) { - if( p_input->p_last_data - p_input->p_current_data < i_size ) + if( p_input->p_last_data - p_input->p_current_data < (ptrdiff_t)i_size ) { /* Go to the next buffer */ - ssize_t i_ret = input_FillBuffer( p_input ); + size_t i_ret = input_FillBuffer( p_input ); if( i_size == -1 ) { @@ -543,10 +543,10 @@ ssize_t input_Peek( input_thread_t * p_input, byte_t ** pp_byte, size_t i_size ) ssize_t input_SplitBuffer( input_thread_t * p_input, data_packet_t ** pp_data, size_t i_size ) { - if( p_input->p_last_data - p_input->p_current_data < i_size ) + if( p_input->p_last_data - p_input->p_current_data < (ptrdiff_t)i_size ) { /* Go to the next buffer */ - ssize_t i_ret = input_FillBuffer( p_input ); + size_t i_ret = input_FillBuffer( p_input ); if( i_ret == -1 ) { diff --git a/src/interface/intf_eject.c b/src/interface/intf_eject.c index 615808998a..faea910ce9 100644 --- a/src/interface/intf_eject.c +++ b/src/interface/intf_eject.c @@ -2,7 +2,7 @@ * intf_eject.c: CD/DVD-ROM ejection handling functions ***************************************************************************** * Copyright (C) 2001, 2002 VideoLAN - * $Id: intf_eject.c,v 1.17 2002/11/11 14:39:12 sam Exp $ + * $Id: intf_eject.c,v 1.18 2002/11/13 20:51:05 sam Exp $ * * Author: Julien Blache for the Linux part * with code taken from the Linux "eject" command @@ -109,7 +109,7 @@ static int EjectSCSI ( int i_fd ); *****************************************************************************/ int __intf_Eject( vlc_object_t *p_this, const char *psz_device ) { - int i_ret; + int i_ret = VLC_SUCCESS; #ifdef SYS_DARWIN FILE *p_eject; @@ -152,11 +152,11 @@ int __intf_Eject( vlc_object_t *p_this, const char *psz_device ) } } - return 1; + return VLC_EGENERIC; #elif defined(UNDER_CE) msg_Warn( p_this, "CD-Rom ejection unsupported on this platform" ); - return 1; + return i_ret; #elif defined(WIN32) HANDLE h_drive ; diff --git a/src/misc/configuration.c b/src/misc/configuration.c index c39db6b2cd..ff3d96743e 100644 --- a/src/misc/configuration.c +++ b/src/misc/configuration.c @@ -2,7 +2,7 @@ * configuration.c management of the modules configuration ***************************************************************************** * Copyright (C) 2001 VideoLAN - * $Id: configuration.c,v 1.45 2002/11/11 14:39:12 sam Exp $ + * $Id: configuration.c,v 1.46 2002/11/13 20:51:05 sam Exp $ * * Authors: Gildas Bazin * @@ -43,7 +43,7 @@ #endif #if defined(HAVE_GETPWUID) -#include /* getpwuid() */ +# include /* getpwuid() */ #endif #if defined( HAVE_SYS_STAT_H ) @@ -52,6 +52,9 @@ #if defined( HAVE_SYS_TYPES_H ) # include #endif +#if defined( WIN32 ) && !defined( UNDER_CE ) +# include +#endif /***************************************************************************** * config_GetInt: get the value of an int variable @@ -525,7 +528,8 @@ int __config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name ) { if( (line[0] == '[') && (p_index = strchr(line,']')) - && (p_index - &line[1] == strlen((*pp_parser)->psz_object_name)) + && (p_index - &line[1] + == (int)strlen((*pp_parser)->psz_object_name)) && !memcmp( &line[1], (*pp_parser)->psz_object_name, strlen((*pp_parser)->psz_object_name) ) ) { @@ -762,9 +766,9 @@ int __config_SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name ) pp_parser++ ) { if( ((p_index2 - &p_line[1]) - == strlen((*pp_parser)->psz_object_name) ) && - !memcmp( &p_line[1], (*pp_parser)->psz_object_name, - strlen((*pp_parser)->psz_object_name) ) ) + == (int)strlen((*pp_parser)->psz_object_name) ) + && !memcmp( &p_line[1], (*pp_parser)->psz_object_name, + strlen((*pp_parser)->psz_object_name) ) ) { if( !psz_module_name ) break; diff --git a/src/misc/iso_lang.c b/src/misc/iso_lang.c index 55ac60866b..9c844d83eb 100644 --- a/src/misc/iso_lang.c +++ b/src/misc/iso_lang.c @@ -2,7 +2,7 @@ * iso_lang.c: function to decode language code (in dvd or a52 for instance). ***************************************************************************** * Copyright (C) 1998-2001 VideoLAN - * $Id: iso_lang.c,v 1.7 2002/11/10 18:04:24 sam Exp $ + * $Id: iso_lang.c,v 1.8 2002/11/13 20:51:05 sam Exp $ * * Author: Stéphane Borel * Arnaud de Bossoreille de Ribou @@ -57,7 +57,7 @@ const char * DecodeLanguage( u16 i_code ) u8 psz_code[3]; psz_code[0] = i_code >> 8; - psz_code[1] = i_code; + psz_code[1] = i_code & 0xff; psz_code[2] = '\0'; for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ ) diff --git a/src/misc/netutils.c b/src/misc/netutils.c index e539514dcf..98c658ccc3 100644 --- a/src/misc/netutils.c +++ b/src/misc/netutils.c @@ -2,7 +2,7 @@ * netutils.c: various network functions ***************************************************************************** * Copyright (C) 1999-2001 VideoLAN - * $Id: netutils.c,v 1.76 2002/11/11 14:39:12 sam Exp $ + * $Id: netutils.c,v 1.77 2002/11/13 20:51:05 sam Exp $ * * Authors: Vincent Seguin * Benoit Steiner @@ -214,6 +214,7 @@ int __network_ChannelJoin( vlc_object_t *p_this, int i_channel ) socket_desc.i_server_port = i_port; /* Find an appropriate network module */ + p_this->p_private = (void*) &socket_desc; p_network = module_Need( p_this, "network", psz_network/*, &socket_desc*/ ); if( p_network == NULL ) { diff --git a/src/playlist/playlist.c b/src/playlist/playlist.c index 7dddda62a2..d048e45c26 100644 --- a/src/playlist/playlist.c +++ b/src/playlist/playlist.c @@ -2,7 +2,7 @@ * playlist.c : Playlist management functions ***************************************************************************** * Copyright (C) 1999-2001 VideoLAN - * $Id: playlist.c,v 1.20 2002/11/13 12:58:19 gbazin Exp $ + * $Id: playlist.c,v 1.21 2002/11/13 20:51:05 sam Exp $ * * Authors: Samuel Hocevar * @@ -416,7 +416,7 @@ static void SkipItem( playlist_t *p_playlist, int i_arg ) /* Increment */ if( b_random ) { - srand( mdate() ); + srand( (unsigned int)mdate() ); /* Simple random stuff - we cheat a bit to minimize the chances to * get the same index again. */ diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c index aeea006a65..45b0ed823c 100644 --- a/src/video_output/video_output.c +++ b/src/video_output/video_output.c @@ -5,7 +5,7 @@ * thread, and destroy a previously oppened video output thread. ***************************************************************************** * Copyright (C) 2000-2001 VideoLAN - * $Id: video_output.c,v 1.196 2002/11/10 18:04:24 sam Exp $ + * $Id: video_output.c,v 1.197 2002/11/13 20:51:05 sam Exp $ * * Authors: Vincent Seguin * @@ -52,8 +52,8 @@ static void EndThread ( vout_thread_t * ); static void DestroyThread ( vout_thread_t * ); static int ReduceHeight ( int ); -static int BinaryLog ( u32 ); -static void MaskToShift ( int *, int *, u32 ); +static int BinaryLog ( uint32_t ); +static void MaskToShift ( int *, int *, uint32_t ); static void InitWindowSize ( vout_thread_t *, int *, int * ); /***************************************************************************** @@ -803,7 +803,7 @@ static int ReduceHeight( int i_ratio ) * This functions is used by MaskToShift, to get a bit index from a binary * value. *****************************************************************************/ -static int BinaryLog(u32 i) +static int BinaryLog( uint32_t i ) { int i_log = 0; @@ -823,9 +823,9 @@ static int BinaryLog(u32 i) ***************************************************************************** * This function is used for obtaining color shifts from masks. *****************************************************************************/ -static void MaskToShift( int *pi_left, int *pi_right, u32 i_mask ) +static void MaskToShift( int *pi_left, int *pi_right, uint32_t i_mask ) { - u32 i_low, i_high; /* lower hand higher bits of the mask */ + uint32_t i_low, i_high; /* lower hand higher bits of the mask */ if( !i_mask ) { @@ -834,7 +834,7 @@ static void MaskToShift( int *pi_left, int *pi_right, u32 i_mask ) } /* Get bits */ - i_low = i_mask & (- i_mask); /* lower bit of the mask */ + i_low = i_mask & (- (int32_t)i_mask); /* lower bit of the mask */ i_high = i_mask + i_low; /* higher bit of the mask */ /* Transform bits into an index */ @@ -862,41 +862,41 @@ static void InitWindowSize( vout_thread_t *p_vout, int *pi_width, i_width = config_GetInt( p_vout, "width" ); i_height = config_GetInt( p_vout, "height" ); - ll_zoom = FP_FACTOR * config_GetFloat( p_vout, "zoom" ); + ll_zoom = (uint64_t)( FP_FACTOR * config_GetFloat( p_vout, "zoom" ) ); if( (i_width >= 0) && (i_height >= 0)) { - *pi_width = i_width * ll_zoom / FP_FACTOR; - *pi_height = i_height * ll_zoom / FP_FACTOR; + *pi_width = (int)( i_width * ll_zoom / FP_FACTOR ); + *pi_height = (int)( i_height * ll_zoom / FP_FACTOR ); return; } else if( i_width >= 0 ) { - *pi_width = i_width * ll_zoom / FP_FACTOR; - *pi_height = i_width * ll_zoom * VOUT_ASPECT_FACTOR / - p_vout->render.i_aspect / FP_FACTOR; + *pi_width = (int)( i_width * ll_zoom / FP_FACTOR ); + *pi_height = (int)( i_width * ll_zoom * VOUT_ASPECT_FACTOR / + p_vout->render.i_aspect / FP_FACTOR ); return; } else if( i_height >= 0 ) { - *pi_height = i_height * ll_zoom / FP_FACTOR; - *pi_width = i_height * ll_zoom * p_vout->render.i_aspect / - VOUT_ASPECT_FACTOR / FP_FACTOR; + *pi_height = (int)( i_height * ll_zoom / FP_FACTOR ); + *pi_width = (int)( i_height * ll_zoom * p_vout->render.i_aspect / + VOUT_ASPECT_FACTOR / FP_FACTOR ); return; } if( p_vout->render.i_height * p_vout->render.i_aspect >= p_vout->render.i_width * VOUT_ASPECT_FACTOR ) { - *pi_width = p_vout->render.i_height * ll_zoom - * p_vout->render.i_aspect / VOUT_ASPECT_FACTOR / FP_FACTOR; - *pi_height = p_vout->render.i_height * ll_zoom / FP_FACTOR; + *pi_width = (int)( p_vout->render.i_height * ll_zoom + * p_vout->render.i_aspect / VOUT_ASPECT_FACTOR / FP_FACTOR ); + *pi_height = (int)( p_vout->render.i_height * ll_zoom / FP_FACTOR ); } else { - *pi_width = p_vout->render.i_width * ll_zoom / FP_FACTOR; - *pi_height = p_vout->render.i_width * ll_zoom - * VOUT_ASPECT_FACTOR / p_vout->render.i_aspect / FP_FACTOR; + *pi_width = (int)( p_vout->render.i_width * ll_zoom / FP_FACTOR ); + *pi_height = (int)( p_vout->render.i_width * ll_zoom + * VOUT_ASPECT_FACTOR / p_vout->render.i_aspect / FP_FACTOR ); } #undef FP_FACTOR diff --git a/src/video_output/video_text.c b/src/video_output/video_text.c index 6d4aed1bb6..b0716c1107 100644 --- a/src/video_output/video_text.c +++ b/src/video_output/video_text.c @@ -2,7 +2,7 @@ * video_text.c : text manipulation functions ***************************************************************************** * Copyright (C) 1999-2001 VideoLAN - * $Id: video_text.c,v 1.39 2002/11/10 23:41:54 sam Exp $ + * $Id: video_text.c,v 1.40 2002/11/13 20:51:05 sam Exp $ * * Authors: Vincent Seguin * Samuel Hocevar @@ -440,13 +440,13 @@ void vout_TextSize( vout_font_t *p_font, int i_style, const char *psz_text, int void vout_Print( vout_font_t *p_font, byte_t *p_pic, int i_bytes_per_pixel, int i_bytes_per_line, u32 i_char_color, u32 i_border_color, u32 i_bg_color, int i_style, const char *psz_text, int i_percent) { - byte_t *p_char, *p_border; /* character and border mask data */ - int i_char_mask, i_border_mask, i_bg_mask; /* masks */ - int i_line; /* current line in character */ - int i_byte; /* current byte in character */ - int i_interspacing; /* offset between two chars */ - int i_font_bytes_per_line, i_font_height; /* font properties */ - int i_position, i_end; /* current position */ + byte_t *p_char, *p_border; /* character and border mask data */ + int i_char_mask, i_border_mask, i_bg_mask; /* masks */ + int i_line; /* current line in character */ + int i_byte; /* current byte in character */ + int i_interspacing; /* offset between two chars */ + int i_font_bytes_per_line, i_font_height; /* font properties */ + unsigned int i_position, i_end; /* current position */ vout_put_byte_t *p_PutByte; /* PutByte function */ /* If no font was loaded, do nothing */ -- 2.39.2