diff options
author | Karlson2k <k2k@narod.ru> | 2015-01-23 21:58:09 +0300 |
---|---|---|
committer | Karlson2k <k2k@narod.ru> | 2015-02-19 00:52:03 +0300 |
commit | 0486a124fb6a6bbf494df390a588296d3623868b (patch) | |
tree | 5408c55056e17e6543702d3cd84074cf91fadf8e /project/VS2010Express | |
parent | 209aa6eb13e1c8ddba2bda3be18ad2e905fbcc98 (diff) |
[win32] Add win32/crts_caller for calling same function in all loaded CRTs
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 7e873102bb..dd310fdd45 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1460,6 +1460,7 @@ <ClCompile Include="..\..\xbmc\view\GUIViewState.cpp" /> <ClCompile Include="..\..\xbmc\view\ViewDatabase.cpp" /> <ClCompile Include="..\..\xbmc\view\ViewStateSettings.cpp" /> + <ClCompile Include="..\..\xbmc\win32\crts_caller.cpp" /> <ClCompile Include="..\..\xbmc\win32\pch.cpp"> <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug Testsuite|Win32'">Create</PrecompiledHeader> @@ -2147,6 +2148,7 @@ <ClInclude Include="..\..\xbmc\view\ViewDatabase.h" /> <ClInclude Include="..\..\xbmc\view\ViewState.h" /> <ClInclude Include="..\..\xbmc\view\ViewStateSettings.h" /> + <ClInclude Include="..\..\xbmc\win32\crts_caller.h" /> <ClInclude Include="..\..\xbmc\win32\IMMNotificationClient.h" /> <ClInclude Include="..\..\xbmc\win32\pch.h" /> <ClInclude Include="..\..\xbmc\win32\PlatformDefs.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 9f19d9fc19..840fb87be2 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3092,6 +3092,9 @@ <ClCompile Include="..\..\xbmc\utils\HttpRangeUtils.cpp"> <Filter>utils</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\win32\crts_caller.cpp"> + <Filter>win32</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPFileHandler.cpp"> <Filter>network\httprequesthandler</Filter> </ClCompile> @@ -6021,6 +6024,9 @@ <ClInclude Include="..\..\xbmc\cores\DataCacheCore.h"> <Filter>cores</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\win32\crts_caller.h"> + <Filter>win32</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\filesystem\OverrideDirectory.h"> <Filter>filesystem</Filter> </ClInclude> |