diff options
author | montellese <montellese@xbmc.org> | 2012-05-13 00:28:57 +0200 |
---|---|---|
committer | Jonathan Marshall <jmarshall@never.you.mind> | 2012-05-13 22:22:09 +1200 |
commit | 4187d2e1e8385b0f66c6f511210160f46ab61e6a (patch) | |
tree | ae0bde3b083768cf18086004a963a3d4f89a4647 /project | |
parent | a52e1792a079e48b3fe430ab5b594b370e019bb6 (diff) |
webserver: add handler for image://
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 c9f51287bd..10e160aaf0 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -791,6 +791,7 @@ <ClCompile Include="..\..\xbmc\network\GUIDialogAccessPoints.cpp" /> <ClCompile Include="..\..\xbmc\network\GUIDialogNetworkSetup.cpp" /> <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPApiHandler.cpp" /> + <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.cpp" /> <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPJsonRpcHandler.cpp" /> <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPVfsHandler.cpp" /> <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPWebinterfaceAddonsHandler.cpp" /> @@ -928,6 +929,7 @@ <ClInclude Include="..\..\xbmc\filesystem\windows\WINFileSMB.h" /> <ClInclude Include="..\..\xbmc\filesystem\windows\WINSMBDirectory.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pythreadstate.h" /> + <ClInclude Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.h" /> <ClInclude Include="..\..\xbmc\network\websocket\WebSocket.h" /> <ClInclude Include="..\..\xbmc\network\websocket\WebSocketManager.h" /> <ClInclude Include="..\..\xbmc\network\websocket\WebSocketV13.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index d76b87529f..f839a4b504 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2581,6 +2581,9 @@ <ClCompile Include="..\..\xbmc\filesystem\ImageFile.cpp"> <Filter>filesystem</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.cpp"> + <Filter>network\httprequesthandler</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5199,6 +5202,9 @@ <ClInclude Include="..\..\xbmc\filesystem\ImageFile.h"> <Filter>filesystem</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.h"> + <Filter>network\httprequesthandler</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |