diff options
author | montellese <montellese@xbmc.org> | 2011-10-10 23:19:40 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2012-03-27 19:55:28 +0200 |
commit | 11f47554f513e027afea4c67ccd2a3750052c66e (patch) | |
tree | e97ab49f85abd52557e492d4428cc03c296cca92 /project | |
parent | de81b24276b4b88ee1392d28f0e5f5524be2c122 (diff) |
webserver: decouple specific usages like jsonrpc, http-api, vfs and webinterface from CWebServer
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 1 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index b229bee9ef..a247b0a6a9 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -799,6 +799,7 @@ <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\network\httprequesthandler\IHTTPRequestHandler.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 94f56e770e..87a4baec11 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -256,6 +256,9 @@ <Filter Include="filesystem\windows"> <UniqueIdentifier>{1cc693eb-11ad-4f53-8640-198d5ab9bcc8}</UniqueIdentifier> </Filter> + <Filter Include="network\httprequesthandler"> + <UniqueIdentifier>{9029e610-aa5a-4414-9e96-1d69f03b3bd8}</UniqueIdentifier> + </Filter> </ItemGroup> <ItemGroup> <ClCompile Include="..\..\xbmc\win32\pch.cpp"> @@ -5220,6 +5223,9 @@ <ClInclude Include="..\..\xbmc\utils\Mime.h"> <Filter>utils</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\network\httprequesthandler\IHTTPRequestHandler.h"> + <Filter>network\httprequesthandler</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |