This commit is contained in:
Shawn Hargreaves 2018-03-14 04:09:54 +00:00
Родитель 2d906b18b0
Коммит 0f130bb537
4 изменённых файлов: 7 добавлений и 8 удалений

Просмотреть файл

@ -35,7 +35,7 @@
</PropertyGroup>
<PropertyGroup>
<WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
</PropertyGroup>

Просмотреть файл

@ -15,7 +15,7 @@
<PropertyGroup>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<TargetPlatformVersion>10.0.15063.0</TargetPlatformVersion>
<TargetPlatformVersion>10.0.16299.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
</PropertyGroup>
</Project>

Просмотреть файл

@ -117,15 +117,9 @@ namespace Microsoft.Graphics.Canvas.Effects
{
interface Windows.Foundation.Collections.IVector<Windows.Foundation.Collections.IKeyValuePair<HSTRING, IInspectable*>*>;
interface Windows.Foundation.IReference<NUMERICS.Vector2>;
interface Windows.Foundation.IReference<NUMERICS.Vector4>;
interface Windows.Foundation.IReference<NUMERICS.Matrix3x2>;
#if WINVER <= _WIN32_WINNT_WINBLUE
interface Windows.Foundation.IReference<NUMERICS.Vector3>;
interface Windows.Foundation.IReference<NUMERICS.Matrix4x4>;
#endif
interface Windows.Foundation.IReferenceArray<NUMERICS.Vector2>;
interface Windows.Foundation.IReferenceArray<NUMERICS.Vector3>;
interface Windows.Foundation.IReferenceArray<NUMERICS.Vector4>;

Просмотреть файл

@ -8,6 +8,9 @@ namespace canvas
{
using namespace ABI::Windows::UI::Xaml;
#pragma warning(push)
#pragma warning(disable: 4996) // Disable warning about PlayToSource being deprecated (we must use it to implement IImage)
class StubImageControl : public RuntimeClass<IImage, IUIElement>
{
public:
@ -128,4 +131,6 @@ namespace canvas
IFACEMETHODIMP InvalidateArrange(void) override { return S_OK; }
IFACEMETHODIMP UpdateLayout(void) override { return S_OK; }
};
#pragma warning(pop)
}