diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2012-10-04 12:48:35 -0700 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2012-10-04 12:48:35 -0700 |
commit | 00545eacd9302e97e43158079972543086fd6ab0 (patch) | |
tree | c61b6458074dd36777607f6511e83ab7469cf437 /project | |
parent | f42e9deacf607a0f087aafc5fa0170866c318380 (diff) | |
parent | 7b29b97c100162725ddde7cff703aef66451b7ec (diff) |
Merge pull request #1511 from hydra/relocate-screenshot-code2
Move screenshot code into it's own file. Move surface capturing code in...
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index e5873ed60d..5b8046f751 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1202,6 +1202,7 @@ <ClCompile Include="..\..\xbmc\ThumbnailCache.cpp" /> <ClCompile Include="..\..\xbmc\URL.cpp" /> <ClCompile Include="..\..\xbmc\Util.cpp" /> + <ClCompile Include="..\..\xbmc\Screenshot.cpp" /> <ClCompile Include="..\..\xbmc\utils\AlarmClock.cpp" /> <ClCompile Include="..\..\xbmc\utils\AliasShortcutUtils.cpp" /> <ClCompile Include="..\..\xbmc\utils\Archive.cpp" /> @@ -2359,6 +2360,7 @@ <ClInclude Include="..\..\xbmc\ThumbnailCache.h" /> <ClInclude Include="..\..\xbmc\URL.h" /> <ClInclude Include="..\..\xbmc\Util.h" /> + <ClInclude Include="..\..\xbmc\Screenshot.h" /> <ClInclude Include="..\..\xbmc\utils\AlarmClock.h" /> <ClInclude Include="..\..\xbmc\utils\AliasShortcutUtils.h" /> <ClInclude Include="..\..\xbmc\utils\Archive.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 2d68a595a5..ec5a664b2c 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2535,6 +2535,7 @@ <ClCompile Include="..\..\xbmc\PartyModeManager.cpp" /> <ClCompile Include="..\..\xbmc\PasswordManager.cpp" /> <ClCompile Include="..\..\xbmc\SectionLoader.cpp" /> + <ClCompile Include="..\..\xbmc\Screenshot.cpp" /> <ClCompile Include="..\..\xbmc\Temperature.cpp" /> <ClCompile Include="..\..\xbmc\TextureCache.cpp" /> <ClCompile Include="..\..\xbmc\TextureCacheJob.cpp" /> @@ -5500,6 +5501,7 @@ <ClInclude Include="..\..\xbmc\NfoFile.h" /> <ClInclude Include="..\..\xbmc\PartyModeManager.h" /> <ClInclude Include="..\..\xbmc\PasswordManager.h" /> + <ClInclude Include="..\..\xbmc\Screenshot.h" /> <ClInclude Include="..\..\xbmc\SortFileItem.h" /> <ClInclude Include="..\..\xbmc\SectionLoader.h" /> <ClInclude Include="..\..\xbmc\Temperature.h" /> |