diff options
author | Jonathan Marshall <jmarshall@xbmc.org> | 2013-10-26 20:53:26 +1300 |
---|---|---|
committer | Jonathan Marshall <jmarshall@xbmc.org> | 2013-11-03 11:41:05 +1300 |
commit | 34984dd19509c21112a22d57edd9584db47dac1d (patch) | |
tree | f26694785b91821b5e42a0a02e2af07b3087737a /project/VS2010Express | |
parent | 0df7d7093623b7cb5801f6df7fecb480bcb3f614 (diff) |
[textures] expose the texture cache to JSON-RPC with GetTextures/RemoveTexture
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 9ff5c9851f..7cea76506f 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -747,6 +747,7 @@ <ClCompile Include="..\..\xbmc\interfaces\json-rpc\SystemOperations.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\VideoLibrary.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\XBMCOperations.cpp" /> + <ClCompile Include="..\..\xbmc\interfaces\json-rpc\TextureOperations.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\legacy\Addon.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\legacy\AddonCallback.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\legacy\AddonClass.cpp" /> @@ -2250,6 +2251,7 @@ <ClInclude Include="..\..\xbmc\interfaces\json-rpc\SystemOperations.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\VideoLibrary.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\XBMCOperations.h" /> + <ClInclude Include="..\..\xbmc\interfaces\json-rpc\TextureOperations.h" /> <ClInclude Include="..\..\xbmc\IProgressCallback.h" /> <ClInclude Include="..\..\xbmc\LangInfo.h" /> <ClInclude Include="..\..\xbmc\MediaSource.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index adbb54e53e..98a6ca6623 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1219,6 +1219,9 @@ <ClCompile Include="..\..\xbmc\interfaces\json-rpc\XBMCOperations.cpp"> <Filter>interfaces\json-rpc</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\interfaces\json-rpc\TextureOperations.cpp"> + <Filter>interfaces\json-rpc</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\music\dialogs\GUIDialogMusicInfo.cpp"> <Filter>music\dialogs</Filter> </ClCompile> @@ -4187,6 +4190,9 @@ <ClInclude Include="..\..\xbmc\interfaces\json-rpc\XBMCOperations.h"> <Filter>interfaces\json-rpc</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\interfaces\json-rpc\TextureOperations.h"> + <Filter>interfaces\json-rpc</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\music\dialogs\GUIDialogMusicInfo.h"> <Filter>music\dialogs</Filter> </ClInclude> |