mirror of
https://github.com/WinDurango-project/WinDurango.git
synced 2024-11-23 11:19:46 +00:00
Updated implementations.
This commit is contained in:
parent
9fbbab7580
commit
64f8bef4ee
@ -75,14 +75,10 @@ namespace Windows
|
||||
{
|
||||
Play = 0,
|
||||
Pause = 1,
|
||||
Stop = 2,
|
||||
Record = 3,
|
||||
FastForward = 4,
|
||||
Rewind = 5,
|
||||
Next = 6,
|
||||
Previous = 7,
|
||||
ChannelUp = 8,
|
||||
ChannelDown = 9
|
||||
Menu = 2,
|
||||
View = 3,
|
||||
Back = 4,
|
||||
MaxButtons = 5
|
||||
};
|
||||
|
||||
enum GameTransportControlsProperty
|
||||
|
@ -1,9 +1,115 @@
|
||||
#include "pch.h"
|
||||
|
||||
#include "Windows.Xbox.Media.GameTransportControls.h"
|
||||
#include "Windows.Xbox.Media.GameTransportControls.g.cpp"
|
||||
|
||||
namespace winrt::Windows::Xbox::Media::implementation
|
||||
{
|
||||
|
||||
}
|
||||
hstring GameTransportControls::Title()
|
||||
{
|
||||
return L"Example Title";
|
||||
}
|
||||
|
||||
hstring GameTransportControls::Subtitle()
|
||||
{
|
||||
return L"Example Subtitle";
|
||||
}
|
||||
|
||||
winrt::Windows::Xbox::Media::GamePlaybackStatus GameTransportControls::PlaybackStatus()
|
||||
{
|
||||
return GamePlaybackStatus::Stopped;
|
||||
}
|
||||
|
||||
void GameTransportControls::PlaybackStatus(winrt::Windows::Xbox::Media::GamePlaybackStatus const& value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
winrt::Windows::Xbox::Media::SoundLevel GameTransportControls::SoundLevel()
|
||||
{
|
||||
return SoundLevel::Full;
|
||||
}
|
||||
|
||||
bool GameTransportControls::IsEnabled()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void GameTransportControls::IsEnabled(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool GameTransportControls::IsPlayEnabled()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void GameTransportControls::IsPlayEnabled(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool GameTransportControls::IsPauseEnabled()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void GameTransportControls::IsPauseEnabled(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool GameTransportControls::IsMenuEnabled()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void GameTransportControls::IsMenuEnabled(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool GameTransportControls::IsViewEnabled()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void GameTransportControls::IsViewEnabled(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool GameTransportControls::IsBackEnabled()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void GameTransportControls::IsBackEnabled(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
winrt::event_token GameTransportControls::ButtonPressed(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Xbox::Media::GameTransportControls, winrt::Windows::Xbox::Media::GameTransportControlsButtonPressedEventArgs> const& handler)
|
||||
{
|
||||
event_token et{};
|
||||
|
||||
return et;
|
||||
}
|
||||
|
||||
void GameTransportControls::ButtonPressed(winrt::event_token const& token) noexcept
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
winrt::event_token GameTransportControls::PropertyChanged(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Xbox::Media::GameTransportControls, winrt::Windows::Xbox::Media::GameTransportControlsPropertyChangedEventArgs> const& handler)
|
||||
{
|
||||
event_token et{};
|
||||
|
||||
return et;
|
||||
}
|
||||
|
||||
void GameTransportControls::PropertyChanged(winrt::event_token const& token) noexcept
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,32 @@
|
||||
#pragma once
|
||||
#include "Windows.Xbox.Media.GameTransportControls.g.h"
|
||||
|
||||
namespace winrt::Windows::Xbox::GameTransportControls::implementation
|
||||
namespace winrt::Windows::Xbox::Media::implementation
|
||||
{
|
||||
struct GameTransportControls : GameTransportControlsT<GameTransportControls>
|
||||
{
|
||||
GameTransportControls() = default;
|
||||
|
||||
hstring Title();
|
||||
hstring Subtitle();
|
||||
winrt::Windows::Xbox::Media::GamePlaybackStatus PlaybackStatus();
|
||||
void PlaybackStatus(winrt::Windows::Xbox::Media::GamePlaybackStatus const& value);
|
||||
winrt::Windows::Xbox::Media::SoundLevel SoundLevel();
|
||||
bool IsEnabled();
|
||||
void IsEnabled(bool value);
|
||||
bool IsPlayEnabled();
|
||||
void IsPlayEnabled(bool value);
|
||||
bool IsPauseEnabled();
|
||||
void IsPauseEnabled(bool value);
|
||||
bool IsMenuEnabled();
|
||||
void IsMenuEnabled(bool value);
|
||||
bool IsViewEnabled();
|
||||
void IsViewEnabled(bool value);
|
||||
bool IsBackEnabled();
|
||||
void IsBackEnabled(bool value);
|
||||
winrt::event_token ButtonPressed(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Xbox::Media::GameTransportControls, winrt::Windows::Xbox::Media::GameTransportControlsButtonPressedEventArgs> const& handler);
|
||||
void ButtonPressed(winrt::event_token const& token) noexcept;
|
||||
winrt::event_token PropertyChanged(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::Xbox::Media::GameTransportControls, winrt::Windows::Xbox::Media::GameTransportControlsPropertyChangedEventArgs> const& handler);
|
||||
void PropertyChanged(winrt::event_token const& token) noexcept;
|
||||
};
|
||||
}
|
||||
namespace winrt::Windows::Xbox::GameTransportControls::factory_implementation
|
||||
{
|
||||
|
||||
}
|
@ -1,9 +1,13 @@
|
||||
#include "pch.h"
|
||||
|
||||
#include "Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.h"
|
||||
#include "Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.g.cpp"
|
||||
|
||||
namespace winrt::Windows::Xbox::Media::implementation
|
||||
{
|
||||
winrt::Windows::Xbox::Media::GameTransportControlsButton GameTransportControlsButtonPressedEventArgs::Button()
|
||||
{
|
||||
GameTransportControlsButton button{};
|
||||
|
||||
}
|
||||
return button;
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,12 @@
|
||||
#pragma once
|
||||
#include "Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.g.h"
|
||||
|
||||
namespace winrt::Windows::Xbox::GameTransportControlsButtonPressedEventArgs::implementation
|
||||
namespace winrt::Windows::Xbox::Media::implementation
|
||||
{
|
||||
struct GameTransportControlsButtonPressedEventArgs : GameTransportControlsButtonPressedEventArgsT<GameTransportControlsButtonPressedEventArgs>
|
||||
{
|
||||
GameTransportControlsButtonPressedEventArgs() = default;
|
||||
|
||||
winrt::Windows::Xbox::Media::GameTransportControlsButton Button();
|
||||
};
|
||||
}
|
||||
namespace winrt::Windows::Xbox::GameTransportControlsButtonPressedEventArgs::factory_implementation
|
||||
{
|
||||
|
||||
}
|
@ -1,9 +1,13 @@
|
||||
#include "pch.h"
|
||||
|
||||
#include "Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.h"
|
||||
#include "Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.g.cpp"
|
||||
|
||||
namespace winrt::Windows::Xbox::Media::implementation
|
||||
{
|
||||
winrt::Windows::Xbox::Media::GameTransportControlsProperty GameTransportControlsPropertyChangedEventArgs::Property()
|
||||
{
|
||||
GameTransportControlsProperty prop{};
|
||||
|
||||
}
|
||||
return prop;
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,12 @@
|
||||
#pragma once
|
||||
#include "Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.g.h"
|
||||
|
||||
namespace winrt::Windows::Xbox::GameTransportControlsPropertyChangedEventArgs::implementation
|
||||
namespace winrt::Windows::Xbox::Media::implementation
|
||||
{
|
||||
struct GameTransportControlsPropertyChangedEventArgs : GameTransportControlsPropertyChangedEventArgsT<GameTransportControlsPropertyChangedEventArgs>
|
||||
{
|
||||
GameTransportControlsPropertyChangedEventArgs() = default;
|
||||
|
||||
winrt::Windows::Xbox::Media::GameTransportControlsProperty Property();
|
||||
};
|
||||
}
|
||||
namespace winrt::Windows::Xbox::GameTransportControlsPropertyChangedEventArgs::factory_implementation
|
||||
{
|
||||
|
||||
}
|
@ -124,6 +124,97 @@
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Achievements.AchievementNotifier.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Achievements.AchievementSource.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Achievements.AchievementUnlockedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AppInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AumidQuery.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentCompatibility.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentEnhancements.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageFullNameQuery.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfoEvents.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ProtocolQuery.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Configuration.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Product.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.Store.ProductPurchasedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.AssociatedControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.AssociatedControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BiometricUserChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyController.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerReading.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerReadingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyHandPair.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BrokeredInteractions.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.Controller.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerInputManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerOrderChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerPairingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.Gamepad.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadReading.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadReadingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.InputManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.InputManagerInternal.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.IsKinectPersonEngagedChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationController.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationReading.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationReadingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.CheckForUpdateResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkSpecifiers.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallationInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentLocation.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadata.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadataPackager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.DownloadableContentPackageManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.FindInstallingPackagesResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferWatcher.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ProgressChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.RequestUpdatePackageResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.StreamingInstallQueue.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.TransferCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.TransferStatusChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.ConversationDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameTransportControls.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.ImageDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.MusicDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SmoothStreamingSessionManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControls.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsButtonPressedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsDisplayUpdater.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsPropertyChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.VideoDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.AudioDeviceAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.AudioDeviceChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.AudioDeviceRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.Console.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.Console2.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.GetPictureResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.GetTokenAndSignatureResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.Launcher.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.OnlineStateChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignInCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignOutCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignOutDeferral.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignOutStartedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.User.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserDisplayInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserDisplayInfoChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Implementation\Windows.Xbox.Achievements.AchievementNotifier.h" />
|
||||
<ClInclude Include="Implementation\Windows.Xbox.Achievements.AchievementSource.h" />
|
||||
<ClInclude Include="Implementation\Windows.Xbox.Achievements.AchievementUnlockedEventArgs.h" />
|
||||
@ -167,6 +258,98 @@
|
||||
<ClInclude Include="pch.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="Generated Files\module.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Achievements.AchievementNotifier.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Achievements.AchievementSource.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Achievements.AchievementUnlockedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AppInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AumidQuery.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentCompatibility.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentEnhancements.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageFullNameQuery.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfoEvents.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ProtocolQuery.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Configuration.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Product.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.Store.ProductPurchasedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.AssociatedControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.AssociatedControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BiometricUserChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyController.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerReading.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerReadingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyHandPair.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BrokeredInteractions.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.Controller.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerInputManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerOrderChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerPairingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.Gamepad.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadReading.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadReadingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.InputManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.InputManagerInternal.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.IsKinectPersonEngagedChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationController.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationReading.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationReadingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.CheckForUpdateResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkSpecifiers.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallationInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentLocation.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadata.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadataPackager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.DownloadableContentPackageManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.FindInstallingPackagesResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferWatcher.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ProgressChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.RequestUpdatePackageResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.StreamingInstallQueue.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.TransferCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.TransferStatusChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.ConversationDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameTransportControls.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.ImageDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.MusicDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SmoothStreamingSessionManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControls.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsButtonPressedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsDisplayUpdater.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsPropertyChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.VideoDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.AudioDeviceAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.AudioDeviceChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.AudioDeviceRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.Console.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.Console2.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.GetPictureResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.GetTokenAndSignatureResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.Launcher.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.OnlineStateChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignInCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignOutCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignOutDeferral.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignOutStartedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.User.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserDisplayInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserDisplayInfoChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Achievements.AchievementNotifier.cpp" />
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Achievements.AchievementSource.cpp" />
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Achievements.AchievementUnlockedEventArgs.cpp" />
|
||||
@ -210,7 +393,6 @@
|
||||
<ClCompile Include="pch.cpp">
|
||||
<PrecompiledHeader>Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
|
@ -17,7 +17,6 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="pch.cpp" />
|
||||
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp" />
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Achievements.AchievementNotifier.cpp">
|
||||
<Filter>Implementation</Filter>
|
||||
</ClCompile>
|
||||
@ -90,6 +89,98 @@
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Media.GameTransportControls.cpp" />
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.cpp" />
|
||||
<ClCompile Include="Implementation\Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.cpp" />
|
||||
<ClCompile Include="Generated Files\module.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Achievements.AchievementNotifier.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Achievements.AchievementSource.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Achievements.AchievementUnlockedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AppInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AumidQuery.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentCompatibility.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentEnhancements.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageFullNameQuery.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfoEvents.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ProtocolQuery.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Configuration.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Product.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.ApplicationModel.Store.ProductPurchasedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.AssociatedControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.AssociatedControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BiometricUserChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyController.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerReading.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerReadingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BodyHandPair.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.BrokeredInteractions.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.Controller.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerInputManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerOrderChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerPairingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.ControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.Gamepad.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadReading.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadReadingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.GamepadRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.InputManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.InputManagerInternal.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.IsKinectPersonEngagedChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationController.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationControllerAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationControllerRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationReading.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Input.NavigationReadingChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.CheckForUpdateResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkSpecifiers.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallationInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentLocation.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadata.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadataPackager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.DownloadableContentPackageManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.FindInstallingPackagesResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferWatcher.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.ProgressChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.RequestUpdatePackageResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.StreamingInstallQueue.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.TransferCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Management.Deployment.TransferStatusChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.ConversationDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameTransportControls.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.ImageDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.MusicDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SmoothStreamingSessionManager.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControls.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsButtonPressedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsDisplayUpdater.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsPropertyChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.Media.VideoDisplayProperties.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.AudioDeviceAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.AudioDeviceChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.AudioDeviceRemovedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.Console.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.Console2.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.GetPictureResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.GetTokenAndSignatureResult.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.Launcher.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.OnlineStateChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignInCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignOutCompletedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignOutDeferral.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.SignOutStartedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.User.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserAddedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserDisplayInfo.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserDisplayInfoChangedEventArgs.g.cpp" />
|
||||
<ClCompile Include="Generated Files\Windows.Xbox.System.UserRemovedEventArgs.g.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="pch.h" />
|
||||
@ -165,6 +256,97 @@
|
||||
<ClInclude Include="Implementation\Windows.Xbox.Media.GameTransportControls.h" />
|
||||
<ClInclude Include="Implementation\Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.h" />
|
||||
<ClInclude Include="Implementation\Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Achievements.AchievementNotifier.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Achievements.AchievementSource.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Achievements.AchievementUnlockedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AppInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.AumidQuery.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentCompatibility.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ContentEnhancements.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageFullNameQuery.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.PackageInfoEvents.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.State.Internal.ProtocolQuery.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Configuration.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.Store.Product.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.ApplicationModel.Store.ProductPurchasedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.AssociatedControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.AssociatedControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BiometricUserChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyController.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerReading.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerReadingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BodyHandPair.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.BrokeredInteractions.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.Controller.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerInputManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerOrderChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerPairingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.ControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.Gamepad.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadReading.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadReadingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.GamepadRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.InputManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.InputManagerInternal.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.IsKinectPersonEngagedChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationController.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationControllerAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationControllerRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationReading.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Input.NavigationReadingChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.CheckForUpdateResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ChunkSpecifiers.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallationInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentInstallManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentLocation.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadata.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ContentMetadataPackager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.DownloadableContentPackageManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.FindInstallingPackagesResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.PackageTransferWatcher.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.ProgressChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.RequestUpdatePackageResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.StreamingInstallQueue.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.TransferCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Management.Deployment.TransferStatusChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.ConversationDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameTransportControls.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameTransportControlsButtonPressedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.GameTransportControlsPropertyChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.ImageDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.MusicDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SmoothStreamingSessionManager.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControls.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsButtonPressedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsDisplayUpdater.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.SystemMediaTransportControlsPropertyChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.Media.VideoDisplayProperties.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.AudioDeviceAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.AudioDeviceChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.AudioDeviceRemovedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.Console.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.Console2.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.GetPictureResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.GetTokenAndSignatureResult.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.Launcher.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.OnlineStateChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignInCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignOutCompletedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignOutDeferral.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.SignOutStartedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.User.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserAddedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserDisplayInfo.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserDisplayInfoChangedEventArgs.g.h" />
|
||||
<ClInclude Include="Generated Files\Windows.Xbox.System.UserRemovedEventArgs.g.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
|
Loading…
Reference in New Issue
Block a user