diff options
author | montellese <montellese@xbmc.org> | 2011-11-06 12:06:13 +0100 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2012-03-27 16:39:10 +0200 |
commit | 0878c5b8cac3336568d5a86e9683a028d3e9b3e3 (patch) | |
tree | 95794fd657be411fdbe659b858ce066ea32151b5 /project | |
parent | 479e8f6a6cbd9b8fb04050a7a924ba44179d4b41 (diff) |
jsonrpc: add GUI namespace with ShowNotification method and "ControlGUI" permission (closes #11443)
Diffstat (limited to 'project')
-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 9a028fb201..f4d082f3a7 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -488,6 +488,7 @@ <ClCompile Include="..\..\xbmc\interfaces\json-rpc\AudioLibrary.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\FileItemHandler.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\FileOperations.cpp" /> + <ClCompile Include="..\..\xbmc\interfaces\json-rpc\GUIOperations.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\InputOperations.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\JSONRPC.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\JSONServiceDescription.cpp" /> @@ -797,6 +798,7 @@ <ClInclude Include="..\..\xbmc\network\websocket\WebSocketV8.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\IJSONRPCAnnouncer.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\JSONRPCUtils.h" /> + <ClInclude Include="..\..\xbmc\interfaces\json-rpc\GUIOperations.h" /> <ClInclude Include="..\..\xbmc\threads\platform\win\Implementation.cpp" /> <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp" /> <ClCompile Include="..\..\xbmc\threads\Thread.cpp" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index a6d38e4337..913b083c35 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2592,6 +2592,9 @@ <ClCompile Include="..\..\xbmc\filesystem\windows\WINSMBDirectory.cpp"> <Filter>filesystem\windows</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\interfaces\json-rpc\GUIOperations.cpp"> + <Filter>interfaces\json-rpc</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5208,6 +5211,9 @@ <ClInclude Include="..\..\xbmc\interfaces\json-rpc\IJSONRPCAnnouncer.h"> <Filter>interfaces\json-rpc</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\interfaces\json-rpc\GUIOperations.h"> + <Filter>interfaces\json-rpc</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |