Skip to content

Commit 948191e

Browse files
author
Kevin Welton
committed
Windows Creator's Update SDK release
1 parent 532b09e commit 948191e

File tree

2,892 files changed

+3532
-3474
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,892 files changed

+3532
-3474
lines changed

10.0.14393.0/Samples/CL/build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cl main.cpp /I ..\.. /EHsc /std:c++latest /d1permissive-
1+
cl /nologo main.cpp /I ..\.. /EHsc /std:c++latest /d1permissive-

10.0.14393.0/Samples/CL/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ using namespace winrt;
66

77
int main()
88
{
9-
initialize();
9+
init_apartment();
1010
}

10.0.14393.0/Samples/IBuffer/pch.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@
99
#include "winrt/Windows.UI.Xaml.Media.Imaging.h"
1010
#include "winrt/Windows.Graphics.Imaging.h"
1111

12+
#pragma warning(push)
13+
#pragma warning(disable: 4467)
1214
#include <robuffer.h>
15+
#pragma warning(pop)
1316
#include <future>

10.0.14393.0/winrt/Windows.ApplicationModel.Activation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once

10.0.14393.0/winrt/Windows.ApplicationModel.AppExtensions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once

10.0.14393.0/winrt/Windows.ApplicationModel.AppService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once

10.0.14393.0/winrt/Windows.ApplicationModel.Appointments.AppointmentsProvider.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once

10.0.14393.0/winrt/Windows.ApplicationModel.Appointments.DataProvider.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once

10.0.14393.0/winrt/Windows.ApplicationModel.Appointments.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once

10.0.14393.0/winrt/Windows.ApplicationModel.Background.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// C++ for the Windows Runtime v1.0.170303.6
1+
// C++ for the Windows Runtime v1.0.170406.8
22
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
33

44
#pragma once
@@ -2917,6 +2917,13 @@ template <typename D> Windows::ApplicationModel::Background::AlarmAccessStatus i
29172917
return status;
29182918
}
29192919

2920+
template <typename D> Windows::ApplicationModel::Background::PhoneTrigger impl_IPhoneTriggerFactory<D>::Create(Windows::ApplicationModel::Calls::Background::PhoneTriggerType type, bool oneShot) const
2921+
{
2922+
Windows::ApplicationModel::Background::PhoneTrigger result { nullptr };
2923+
check_hresult(WINRT_SHIM(IPhoneTriggerFactory)->abi_Create(type, oneShot, put_abi(result)));
2924+
return result;
2925+
}
2926+
29202927
template <typename D> bool impl_IPhoneTrigger<D>::OneShot() const
29212928
{
29222929
bool value {};
@@ -2931,13 +2938,6 @@ template <typename D> Windows::ApplicationModel::Calls::Background::PhoneTrigger
29312938
return result;
29322939
}
29332940

2934-
template <typename D> Windows::ApplicationModel::Background::PhoneTrigger impl_IPhoneTriggerFactory<D>::Create(Windows::ApplicationModel::Calls::Background::PhoneTriggerType type, bool oneShot) const
2935-
{
2936-
Windows::ApplicationModel::Background::PhoneTrigger result { nullptr };
2937-
check_hresult(WINRT_SHIM(IPhoneTriggerFactory)->abi_Create(type, oneShot, put_abi(result)));
2938-
return result;
2939-
}
2940-
29412941
template <typename D> Windows::Devices::SmartCards::SmartCardTriggerType impl_ISmartCardTrigger<D>::TriggerType() const
29422942
{
29432943
Windows::Devices::SmartCards::SmartCardTriggerType triggerType {};

0 commit comments

Comments
 (0)