diff options
author | Arne Morten Kvarving <cptspiff@gmail.com> | 2016-06-10 00:15:39 +0200 |
---|---|---|
committer | Arne Morten Kvarving <cptspiff@gmail.com> | 2016-06-10 00:17:25 +0200 |
commit | 64677a8c8a5268aebd2cd566f90078101b7d8b82 (patch) | |
tree | 06caa98ce69b7f23fc065ce94c44060afbf04412 /project/VS2010Express | |
parent | cc6a8e4aa01d57f2d54087bb1025833abd95733f (diff) |
changed: get rid of FileReaderFile
this was an earlier version of the VFS cache.
it was kept around as backwards compatiblity
wrapper for the READ_CACHE support as it was
used in some audio decoders.
the audio decoders have since been moved to add-ons and rewritten to
use the cache through the new mechanisms, so there is no longer
any legacy to take into consideration.
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 8 |
2 files changed, 2 insertions, 10 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 548571ba25..c56b13829a 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -391,7 +391,6 @@ copy "..\Win32BuildSetup\dependencies\python27.dll" "$(TargetDir)"</Command> <ClCompile Include="..\..\xbmc\filesystem\FavouritesDirectory.cpp" /> <ClCompile Include="..\..\xbmc\filesystem\FileDirectoryFactory.cpp" /> <ClCompile Include="..\..\xbmc\filesystem\FileFactory.cpp" /> - <ClCompile Include="..\..\xbmc\filesystem\FileReaderFile.cpp" /> <ClCompile Include="..\..\xbmc\filesystem\FTPDirectory.cpp" /> <ClCompile Include="..\..\xbmc\filesystem\FTPParse.cpp" /> <ClCompile Include="..\..\xbmc\filesystem\HTTPDirectory.cpp" /> @@ -1413,7 +1412,6 @@ copy "..\Win32BuildSetup\dependencies\python27.dll" "$(TargetDir)"</Command> <ClInclude Include="..\..\xbmc\filesystem\File.h" /> <ClInclude Include="..\..\xbmc\filesystem\FileDirectoryFactory.h" /> <ClInclude Include="..\..\xbmc\filesystem\FileFactory.h" /> - <ClInclude Include="..\..\xbmc\filesystem\FileReaderFile.h" /> <ClInclude Include="..\..\xbmc\filesystem\FTPDirectory.h" /> <ClInclude Include="..\..\xbmc\filesystem\FTPParse.h" /> <ClInclude Include="..\..\xbmc\filesystem\HTTPDirectory.h" /> @@ -3145,4 +3143,4 @@ copy "..\Win32BuildSetup\dependencies\python27.dll" "$(TargetDir)"</Command> </VisualStudio> </ProjectExtensions> <Import Project="$(SolutionDir)\$(ProjectFileName).targets.user" Condition="Exists('$(SolutionDir)\$(ProjectFileName).targets.user')" /> -</Project>
\ No newline at end of file +</Project> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 13a252d362..da2510b54d 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1929,9 +1929,6 @@ <ClCompile Include="..\..\xbmc\filesystem\FileFactory.cpp"> <Filter>filesystem</Filter> </ClCompile> - <ClCompile Include="..\..\xbmc\filesystem\FileReaderFile.cpp"> - <Filter>filesystem</Filter> - </ClCompile> <ClCompile Include="..\..\xbmc\filesystem\FTPDirectory.cpp"> <Filter>filesystem</Filter> </ClCompile> @@ -5085,9 +5082,6 @@ <ClInclude Include="..\..\xbmc\filesystem\FileFactory.h"> <Filter>filesystem</Filter> </ClInclude> - <ClInclude Include="..\..\xbmc\filesystem\FileReaderFile.h"> - <Filter>filesystem</Filter> - </ClInclude> <ClInclude Include="..\..\xbmc\filesystem\FTPDirectory.h"> <Filter>filesystem</Filter> </ClInclude> @@ -6802,4 +6796,4 @@ <Filter>shaders</Filter> </FxCompile> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |