diff options
author | Rainer Hochecker <fernetmenta@online.de> | 2016-03-22 17:38:32 +0100 |
---|---|---|
committer | Rainer Hochecker <fernetmenta@online.de> | 2016-03-23 16:37:38 +0100 |
commit | 4e491f3cbfe788ee3e599e1a46975df91524a7a9 (patch) | |
tree | df6383f9e6f020e51713fe954af850efc335b350 /project/VS2010Express | |
parent | 62f3b9194782c3aae1f9ad0d9753a08d45d2280a (diff) |
[pvr] - rework PVRManager, addons are owned by addon system
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index c911304d67..bbdcc1a196 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -209,6 +209,7 @@ <ClCompile Include="..\..\xbmc\addons\InputStream.cpp" /> <ClCompile Include="..\..\xbmc\addons\LanguageResource.cpp" /> <ClCompile Include="..\..\xbmc\addons\PluginSource.cpp" /> + <ClCompile Include="..\..\xbmc\addons\PVRClient.cpp" /> <ClCompile Include="..\..\xbmc\addons\Repository.cpp" /> <ClCompile Include="..\..\xbmc\addons\RepositoryUpdater.cpp" /> <ClCompile Include="..\..\xbmc\addons\Service.cpp" /> @@ -843,7 +844,6 @@ <ClCompile Include="..\..\xbmc\profiles\windows\GUIWindowSettingsProfile.cpp" /> <ClCompile Include="..\..\xbmc\programs\GUIViewStatePrograms.cpp" /> <ClCompile Include="..\..\xbmc\programs\GUIWindowPrograms.cpp" /> - <ClCompile Include="..\..\xbmc\pvr\addons\PVRClient.cpp" /> <ClCompile Include="..\..\xbmc\pvr\addons\PVRClients.cpp" /> <ClCompile Include="..\..\xbmc\pvr\channels\PVRChannel.cpp" /> <ClCompile Include="..\..\xbmc\pvr\channels\PVRChannelGroup.cpp" /> @@ -1004,6 +1004,7 @@ <ClInclude Include="..\..\xbmc\addons\kodi-addon-dev-kit\include\kodi\xbmc_vis_dll.h" /> <ClInclude Include="..\..\xbmc\addons\kodi-addon-dev-kit\include\kodi\xbmc_vis_types.h" /> <ClInclude Include="..\..\xbmc\addons\InputStream.h" /> + <ClInclude Include="..\..\xbmc\addons\PVRClient.h" /> <ClInclude Include="..\..\xbmc\addons\Webinterface.h" /> <ClInclude Include="..\..\xbmc\addons\UISoundsResource.h" /> <ClInclude Include="..\..\xbmc\addons\LanguageResource.h" /> @@ -2242,7 +2243,6 @@ <ClInclude Include="..\..\xbmc\powermanagement\windows\Win32PowerSyscall.h" /> <ClInclude Include="..\..\xbmc\programs\GUIViewStatePrograms.h" /> <ClInclude Include="..\..\xbmc\programs\GUIWindowPrograms.h" /> - <ClInclude Include="..\..\xbmc\pvr\addons\PVRClient.h" /> <ClInclude Include="..\..\xbmc\pvr\addons\PVRClients.h" /> <ClInclude Include="..\..\xbmc\pvr\channels\PVRChannel.h" /> <ClInclude Include="..\..\xbmc\pvr\channels\PVRChannelGroup.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 43225593fd..13d5fcaa28 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1722,9 +1722,6 @@ <ClCompile Include="..\..\xbmc\pvr\channels\PVRRadioRDSInfoTag.cpp"> <Filter>pvr\channels</Filter> </ClCompile> - <ClCompile Include="..\..\xbmc\pvr\addons\PVRClient.cpp"> - <Filter>pvr\addons</Filter> - </ClCompile> <ClCompile Include="..\..\xbmc\dialogs\GUIDialogExtendedProgressBar.cpp"> <Filter>dialogs</Filter> </ClCompile> @@ -3465,6 +3462,9 @@ </ClCompile> <ClCompile Include="..\..\xbmc\ServiceBroker.cpp" /> <ClCompile Include="..\..\xbmc\ServiceManager.cpp" /> + <ClCompile Include="..\..\xbmc\addons\PVRClient.cpp"> + <Filter>addons</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -4915,9 +4915,6 @@ <ClInclude Include="..\..\xbmc\pvr\channels\PVRRadioRDSInfoTag.h"> <Filter>pvr\channels</Filter> </ClInclude> - <ClInclude Include="..\..\xbmc\pvr\addons\PVRClient.h"> - <Filter>pvr\addons</Filter> - </ClInclude> <ClInclude Include="..\..\xbmc\dialogs\GUIDialogExtendedProgressBar.h"> <Filter>dialogs</Filter> </ClInclude> @@ -6732,6 +6729,9 @@ </ClInclude> <ClInclude Include="..\..\xbmc\ServiceBroker.h" /> <ClInclude Include="..\..\xbmc\ServiceManager.h" /> + <ClInclude Include="..\..\xbmc\addons\PVRClient.h"> + <Filter>addons</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |