Skip to content

Commit cae1a96

Browse files
committed
Windows 10 build 14295 - June 2016 Update 2
2 parents 86d9026 + a7f44b9 commit cae1a96

File tree

191 files changed

+8162
-1683
lines changed

Some content is hidden

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

191 files changed

+8162
-1683
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,16 +381,17 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
381381

382382
<table>
383383
<tr>
384+
<td><a href="Samples/XamlAnimatedGif">Animated GIF playback (XAML)</a></td>
384385
<td><a href="Samples/AnimationLibrary">Animation library (HTML)</a></td>
385386
<td><a href="Samples/AnimationMetrics">Animation metrics</a></td>
386-
<td><a href="Samples/CompositionVisual">Composition visual without framework</a></td>
387387
</tr>
388388
<tr>
389+
<td><a href="Samples/CompositionVisual">Composition visual without framework</a></td>
389390
<td><a href="Samples/D2DCustomEffects">Direct2D custom image effects</a></td>
390391
<td><a href="Samples/D2DGradientMesh">Direct2D gradient mesh</a></td>
391-
<td><a href="Samples/EfficientAnimations">Efficient animations (HTML)</a></td>
392392
</tr>
393393
<tr>
394+
<td><a href="Samples/EfficientAnimations">Efficient animations (HTML)</a></td>
394395
<td><a href="Samples/XamlTransform3DAnimations">Transform3D animations</a></td>
395396
<td><a href="Samples/XamlTransform3DParallax">Transform3D parallax</a></td>
396397
</tr>
@@ -401,6 +402,7 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
401402
<table>
402403
<tr>
403404
<td><a href="Samples/HolographicSpatialMapping">Holographic spatial mapping</a></td>
405+
<td><a href="Samples/HolographicTagAlong">Tag-along hologram</a></td>
404406
</tr>
405407
</table>
406408

Samples/ActivitySensor/cpp/Scenario4_BackgroundActivity.xaml.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ void Scenario4_BackgroundActivity::ScenarioRegisterTask(Object^ sender, RoutedEv
7474
{
7575
create_task(BackgroundExecutionManager::RequestAccessAsync()).then([this](BackgroundAccessStatus status)
7676
{
77-
if ((BackgroundAccessStatus::AllowedWithAlwaysOnRealTimeConnectivity == status) ||
78-
(BackgroundAccessStatus::AllowedMayUseActiveRealTimeConnectivity == status))
77+
if ((BackgroundAccessStatus::AlwaysAllowed == status) ||
78+
(BackgroundAccessStatus::AllowedSubjectToSystemPolicy == status))
7979
{
8080
RegisterBackgroundTask();
8181
}

Samples/ActivitySensor/cs/Scenario4_BackgroundActivity.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ async private void ScenarioRegisterTask(object sender, RoutedEventArgs e)
7575
// Determine if an activity sensor is present
7676
// This can also be done using Windows::Devices::Enumeration::DeviceInformation::FindAllAsync
7777
var activitySensor = await ActivitySensor.GetDefaultAsync();
78-
if (activitySensor != null)
78+
if (true||activitySensor != null)
7979
{
8080
var status = await BackgroundExecutionManager.RequestAccessAsync();
8181

82-
if ((BackgroundAccessStatus.AllowedWithAlwaysOnRealTimeConnectivity == status) ||
83-
(BackgroundAccessStatus.AllowedMayUseActiveRealTimeConnectivity == status))
82+
if ((BackgroundAccessStatus.AlwaysAllowed == status) ||
83+
(BackgroundAccessStatus.AllowedSubjectToSystemPolicy == status))
8484
{
8585
RegisterBackgroundTask();
8686
}

Samples/ActivitySensor/js/js/scenario4-backgroundActivity.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
function registerTaskScenario() {
5252
registerTaskButton.disabled = true;
5353
BackgroundExecutionManager.requestAccessAsync().done(function (status) {
54-
if (BackgroundAccessStatus.allowedWithAlwaysOnRealTimeConnectivity === status ||
55-
BackgroundAccessStatus.allowedMayUseActiveRealTimeConnectivity === status) {
54+
if (BackgroundAccessStatus.alwaysAllowed === status ||
55+
BackgroundAccessStatus.allowedSubjectToSystemPolicy === status) {
5656
registerBackgroundTask();
5757
} else {
5858
WinJS.log && WinJS.log("Background tasks may be disabled for this app", "sample", "error");

Samples/ActivitySensor/vb/Scenario4_BackgroundActivity.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Namespace Global.SDKTemplate
7070
Dim activitySensor As ActivitySensor = Await ActivitySensor.GetDefaultAsync()
7171
If activitySensor IsNot Nothing Then
7272
Dim status = Await BackgroundExecutionManager.RequestAccessAsync()
73-
If(BackgroundAccessStatus.AllowedWithAlwaysOnRealTimeConnectivity = status) OrElse (BackgroundAccessStatus.AllowedMayUseActiveRealTimeConnectivity = status) Then
73+
If(BackgroundAccessStatus.AlwaysAllowed = status) OrElse (BackgroundAccessStatus.AllowedSubjectToSystemPolicy = status) Then
7474
RegisterBackgroundTask()
7575
Else
7676
rootPage.NotifyUser("Background tasks may be disabled for this app", NotifyType.ErrorMessage)

Samples/AllJoyn/Common/Scenario1WinRTComponent/ISecureInterfaceService.h

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,13 @@
99
//
1010
//*********************************************************
1111
//-----------------------------------------------------------------------------
12-
// <auto-generated>
13-
// This code was generated by a tool.
14-
//
15-
// Changes to this file may cause incorrect behavior and will be lost if
16-
// the code is regenerated.
17-
//
18-
// Tool: AllJoynCodeGenerator.exe
12+
// <auto-generated>
13+
// This code was generated by a tool.
1914
//
20-
// This tool is located in the Windows 10 SDK and the Windows 10 AllJoyn
21-
// Visual Studio Extension in the Visual Studio Gallery.
22-
//
23-
// The generated code should be packaged in a Windows 10 C++/CX Runtime
24-
// Component which can be consumed in any UWP-supported language using
25-
// APIs that are available in Windows.Devices.AllJoyn.
15+
// Changes to this file may cause incorrect behavior and will be lost if
16+
// the code is regenerated.
2617
//
27-
// Using AllJoynCodeGenerator - Invoke the following command with a valid
28-
// Introspection XML file and a writable output directory:
29-
// AllJoynCodeGenerator -i <INPUT XML FILE> -o <OUTPUT DIRECTORY>
18+
// For more information, see: http://go.microsoft.com/fwlink/?LinkID=623246
3019
// </auto-generated>
3120
//-----------------------------------------------------------------------------
3221
#pragma once

Samples/AllJoyn/Common/Scenario1WinRTComponent/Scenario1WinRTComponent.vcxproj

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
3636
<AppContainerApplication>true</AppContainerApplication>
3737
<ApplicationType>Windows Store</ApplicationType>
38-
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
39-
<WindowsTargetPlatformVersion>10.0.14295.0</WindowsTargetPlatformVersion>
38+
<WindowsTargetPlatformVersion>10.0.14332.0</WindowsTargetPlatformVersion>
4039
<WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
40+
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
4141
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
4242
</PropertyGroup>
4343
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
@@ -126,97 +126,97 @@
126126
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
127127
<ClCompile>
128128
<PrecompiledHeader>Use</PrecompiledHeader>
129-
<PreprocessorDefinitions>_WINRT_DLL;%(PreprocessorDefinitions);QCC_OS_GROUP_WINDOWS</PreprocessorDefinitions>
129+
<PreprocessorDefinitions>_WINRT_DLL;QCC_OS_GROUP_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
130130
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
131131
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
132132
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
133-
<AdditionalOptions>/bigobj -Zm210 %(AdditionalOptions)</AdditionalOptions>
133+
<AdditionalOptions>/bigobj /Zm250</AdditionalOptions>
134134
<DisableSpecificWarnings>28204</DisableSpecificWarnings>
135135
</ClCompile>
136136
<Link>
137137
<SubSystem>Console</SubSystem>
138138
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
139-
<AdditionalDependencies>WindowsApp.lib;%(AdditionalDependencies);msajapi.lib</AdditionalDependencies>
139+
<AdditionalDependencies>WindowsApp.lib;msajapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
140140
</Link>
141141
</ItemDefinitionGroup>
142142
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
143143
<ClCompile>
144144
<PrecompiledHeader>Use</PrecompiledHeader>
145-
<PreprocessorDefinitions>_WINRT_DLL;NDEBUG;%(PreprocessorDefinitions);QCC_OS_GROUP_WINDOWS</PreprocessorDefinitions>
145+
<PreprocessorDefinitions>_WINRT_DLL;QCC_OS_GROUP_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
146146
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
147147
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
148148
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
149-
<AdditionalOptions>/bigobj -Zm210 %(AdditionalOptions)</AdditionalOptions>
149+
<AdditionalOptions>/bigobj /Zm250</AdditionalOptions>
150150
<DisableSpecificWarnings>28204</DisableSpecificWarnings>
151151
</ClCompile>
152152
<Link>
153153
<SubSystem>Console</SubSystem>
154154
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
155-
<AdditionalDependencies>WindowsApp.lib;%(AdditionalDependencies);msajapi.lib</AdditionalDependencies>
155+
<AdditionalDependencies>WindowsApp.lib;msajapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
156156
</Link>
157157
</ItemDefinitionGroup>
158158
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
159159
<ClCompile>
160160
<PrecompiledHeader>Use</PrecompiledHeader>
161-
<PreprocessorDefinitions>_WINRT_DLL;%(PreprocessorDefinitions);QCC_OS_GROUP_WINDOWS</PreprocessorDefinitions>
161+
<PreprocessorDefinitions>_WINRT_DLL;QCC_OS_GROUP_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
162162
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
163163
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
164164
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
165-
<AdditionalOptions>/bigobj -Zm210 %(AdditionalOptions)</AdditionalOptions>
165+
<AdditionalOptions>/bigobj /Zm250</AdditionalOptions>
166166
<DisableSpecificWarnings>28204</DisableSpecificWarnings>
167167
</ClCompile>
168168
<Link>
169169
<SubSystem>Console</SubSystem>
170170
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
171-
<AdditionalDependencies>WindowsApp.lib;%(AdditionalDependencies);msajapi.lib</AdditionalDependencies>
171+
<AdditionalDependencies>WindowsApp.lib;msajapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
172172
</Link>
173173
</ItemDefinitionGroup>
174174
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
175175
<ClCompile>
176176
<PrecompiledHeader>Use</PrecompiledHeader>
177-
<PreprocessorDefinitions>_WINRT_DLL;NDEBUG;%(PreprocessorDefinitions);QCC_OS_GROUP_WINDOWS</PreprocessorDefinitions>
177+
<PreprocessorDefinitions>_WINRT_DLL;QCC_OS_GROUP_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
178178
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
179179
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
180180
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
181-
<AdditionalOptions>/bigobj -Zm210 %(AdditionalOptions)</AdditionalOptions>
181+
<AdditionalOptions>/bigobj /Zm250</AdditionalOptions>
182182
<DisableSpecificWarnings>28204</DisableSpecificWarnings>
183183
</ClCompile>
184184
<Link>
185185
<SubSystem>Console</SubSystem>
186186
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
187-
<AdditionalDependencies>WindowsApp.lib;%(AdditionalDependencies);msajapi.lib</AdditionalDependencies>
187+
<AdditionalDependencies>WindowsApp.lib;msajapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
188188
</Link>
189189
</ItemDefinitionGroup>
190190
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
191191
<ClCompile>
192192
<PrecompiledHeader>Use</PrecompiledHeader>
193-
<PreprocessorDefinitions>_WINRT_DLL;%(PreprocessorDefinitions);QCC_OS_GROUP_WINDOWS</PreprocessorDefinitions>
193+
<PreprocessorDefinitions>_WINRT_DLL;QCC_OS_GROUP_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
194194
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
195195
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
196196
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
197-
<AdditionalOptions>/bigobj -Zm210 %(AdditionalOptions)</AdditionalOptions>
197+
<AdditionalOptions>/bigobj /Zm250</AdditionalOptions>
198198
<DisableSpecificWarnings>28204</DisableSpecificWarnings>
199199
</ClCompile>
200200
<Link>
201201
<SubSystem>Console</SubSystem>
202202
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
203-
<AdditionalDependencies>WindowsApp.lib;%(AdditionalDependencies);msajapi.lib</AdditionalDependencies>
203+
<AdditionalDependencies>WindowsApp.lib;msajapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
204204
</Link>
205205
</ItemDefinitionGroup>
206206
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
207207
<ClCompile>
208208
<PrecompiledHeader>Use</PrecompiledHeader>
209-
<PreprocessorDefinitions>_WINRT_DLL;NDEBUG;%(PreprocessorDefinitions);QCC_OS_GROUP_WINDOWS</PreprocessorDefinitions>
209+
<PreprocessorDefinitions>_WINRT_DLL;QCC_OS_GROUP_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
210210
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
211211
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
212212
<AdditionalUsingDirectories>$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
213-
<AdditionalOptions>/bigobj -Zm210 %(AdditionalOptions)</AdditionalOptions>
213+
<AdditionalOptions>/bigobj /Zm250</AdditionalOptions>
214214
<DisableSpecificWarnings>28204</DisableSpecificWarnings>
215215
</ClCompile>
216216
<Link>
217217
<SubSystem>Console</SubSystem>
218218
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
219-
<AdditionalDependencies>WindowsApp.lib;%(AdditionalDependencies);msajapi.lib</AdditionalDependencies>
219+
<AdditionalDependencies>WindowsApp.lib;msajapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
220220
</Link>
221221
</ItemDefinitionGroup>
222222
<ItemGroup>
@@ -257,4 +257,9 @@
257257
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
258258
<ImportGroup Label="ExtensionTargets">
259259
</ImportGroup>
260+
<ProjectExtensions>
261+
<VisualStudio>
262+
<UserProperties AllJoynProjectRole="AllJoynInterfaceProject" ImplementsAllJoynInterface="com.microsoft.Samples.SecureInterface" />
263+
</VisualStudio>
264+
</ProjectExtensions>
260265
</Project>

Samples/AllJoyn/Common/Scenario1WinRTComponent/SecureInterfaceConsumer.cpp

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,13 @@
99
//
1010
//*********************************************************
1111
//-----------------------------------------------------------------------------
12-
// <auto-generated>
13-
// This code was generated by a tool.
14-
//
15-
// Changes to this file may cause incorrect behavior and will be lost if
16-
// the code is regenerated.
17-
//
18-
// Tool: AllJoynCodeGenerator.exe
19-
//
20-
// This tool is located in the Windows 10 SDK and the Windows 10 AllJoyn
21-
// Visual Studio Extension in the Visual Studio Gallery.
12+
// <auto-generated>
13+
// This code was generated by a tool.
2214
//
23-
// The generated code should be packaged in a Windows 10 C++/CX Runtime
24-
// Component which can be consumed in any UWP-supported language using
25-
// APIs that are available in Windows.Devices.AllJoyn.
15+
// Changes to this file may cause incorrect behavior and will be lost if
16+
// the code is regenerated.
2617
//
27-
// Using AllJoynCodeGenerator - Invoke the following command with a valid
28-
// Introspection XML file and a writable output directory:
29-
// AllJoynCodeGenerator -i <INPUT XML FILE> -o <OUTPUT DIRECTORY>
18+
// For more information, see: http://go.microsoft.com/fwlink/?LinkID=623246
3019
// </auto-generated>
3120
//-----------------------------------------------------------------------------
3221
#include "pch.h"
@@ -128,13 +117,13 @@ IAsyncOperation<SecureInterfaceConcatenateResult^>^ SecureInterfaceConsumer::Con
128117
alljoyn_msgarg inputs = alljoyn_msgarg_array_create(argCount);
129118

130119
QStatus status = ER_OK;
131-
status = static_cast<QStatus>(TypeConversionHelpers::SetAllJoynMessageArg(alljoyn_msgarg_array_element(inputs, 0), "s", interfaceMemberInStr1));
132-
133120
if (ER_OK == status)
134121
{
135-
status = static_cast<QStatus>(TypeConversionHelpers::SetAllJoynMessageArg(alljoyn_msgarg_array_element(inputs, 1), "s", interfaceMemberInStr2));
122+
status = static_cast<QStatus>(TypeConversionHelpers::SetAllJoynMessageArg(alljoyn_msgarg_array_element(inputs, 0), "s", interfaceMemberInStr1));
136123
}
137124

125+
status = static_cast<QStatus>(TypeConversionHelpers::SetAllJoynMessageArg(alljoyn_msgarg_array_element(inputs, 1), "s", interfaceMemberInStr2));
126+
138127
if (ER_OK == status)
139128
{
140129
status = alljoyn_proxybusobject_methodcall(

Samples/AllJoyn/Common/Scenario1WinRTComponent/SecureInterfaceConsumer.h

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,13 @@
99
//
1010
//*********************************************************
1111
//-----------------------------------------------------------------------------
12-
// <auto-generated>
13-
// This code was generated by a tool.
14-
//
15-
// Changes to this file may cause incorrect behavior and will be lost if
16-
// the code is regenerated.
17-
//
18-
// Tool: AllJoynCodeGenerator.exe
12+
// <auto-generated>
13+
// This code was generated by a tool.
1914
//
20-
// This tool is located in the Windows 10 SDK and the Windows 10 AllJoyn
21-
// Visual Studio Extension in the Visual Studio Gallery.
22-
//
23-
// The generated code should be packaged in a Windows 10 C++/CX Runtime
24-
// Component which can be consumed in any UWP-supported language using
25-
// APIs that are available in Windows.Devices.AllJoyn.
15+
// Changes to this file may cause incorrect behavior and will be lost if
16+
// the code is regenerated.
2617
//
27-
// Using AllJoynCodeGenerator - Invoke the following command with a valid
28-
// Introspection XML file and a writable output directory:
29-
// AllJoynCodeGenerator -i <INPUT XML FILE> -o <OUTPUT DIRECTORY>
18+
// For more information, see: http://go.microsoft.com/fwlink/?LinkID=623246
3019
// </auto-generated>
3120
//-----------------------------------------------------------------------------
3221
#pragma once

Samples/AllJoyn/Common/Scenario1WinRTComponent/SecureInterfaceEventArgs.h

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,13 @@
99
//
1010
//*********************************************************
1111
//-----------------------------------------------------------------------------
12-
// <auto-generated>
13-
// This code was generated by a tool.
14-
//
15-
// Changes to this file may cause incorrect behavior and will be lost if
16-
// the code is regenerated.
17-
//
18-
// Tool: AllJoynCodeGenerator.exe
12+
// <auto-generated>
13+
// This code was generated by a tool.
1914
//
20-
// This tool is located in the Windows 10 SDK and the Windows 10 AllJoyn
21-
// Visual Studio Extension in the Visual Studio Gallery.
22-
//
23-
// The generated code should be packaged in a Windows 10 C++/CX Runtime
24-
// Component which can be consumed in any UWP-supported language using
25-
// APIs that are available in Windows.Devices.AllJoyn.
15+
// Changes to this file may cause incorrect behavior and will be lost if
16+
// the code is regenerated.
2617
//
27-
// Using AllJoynCodeGenerator - Invoke the following command with a valid
28-
// Introspection XML file and a writable output directory:
29-
// AllJoynCodeGenerator -i <INPUT XML FILE> -o <OUTPUT DIRECTORY>
18+
// For more information, see: http://go.microsoft.com/fwlink/?LinkID=623246
3019
// </auto-generated>
3120
//-----------------------------------------------------------------------------
3221
#pragma once

0 commit comments

Comments
 (0)