Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.ApplicationModel.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.ApplicationModel.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- | public enum Windows.ApplicationModel.Activation.ActivationKind {
- - Print3DWorkflow = 1011,
- | }
- + public class Windows.ApplicationModel.ExtendedExecution.ExtendedExecutionRevokedEventArgs {
- + public ExtendedExecutionRevokedReason Reason { get; }
- + }
- + public enum Windows.ApplicationModel.ExtendedExecution.ExtendedExecutionRevokedReason {
- + Resumed = 0,
- + SystemPolicy = 1,
- + }
- - public class Windows.ApplicationModel.ExtendedExecution.ExtensionRevokedEventArgs;
- - public enum Windows.ApplicationModel.ExtendedExecution.ExtensionRevokedReason;
- + public enum Windows.ApplicationModel.ExtendedExecution.Foreground.ExtendedExecutionForegroundResult {
- + Allowed = 0,
- + Denied = 1,
- + }
- + public class Windows.ApplicationModel.ExtendedExecution.Foreground.ExtendedExecutionForegroundRevokedEventArgs {
- + public ExtendedExecutionForegroundRevokedReason Reason { get; }
- + }
- + public enum Windows.ApplicationModel.ExtendedExecution.Foreground.ExtendedExecutionForegroundRevokedReason {
- + Resumed = 0,
- + SystemPolicy = 1,
- + }
- + public class Windows.ApplicationModel.ExtendedExecution.Foreground.ExtendedExecutionForegroundSession {
- + public string Description { get; set; }
- + public ExtendedExecutionForegroundSession();
- + public IAsyncOperation<ExtendedExecutionForegroundResult> RequestExtensionAsync();
- + public void Close();
- + TypedEventHandler<object, ExtendedExecutionForegroundRevokedEventArgs> Revoked;
- + }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Data.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Data.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Devices.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Devices.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- - public class Windows.Devices.Enumeration.DeviceFilter;
- | public class Windows.Devices.Enumeration.DeviceInformation {
- + public static string GetAqsFilterFromDeviceClass( DeviceClass aqsFilter );
- - public static DeviceFilter GetDeviceFilterFromDeviceClass( DeviceClass deviceFilter );
- - public static IAsyncOperation<DeviceInformationCollection> FindAllWithFilterAsync( DeviceFilter asyncOp, IIterable<string> deviceFilter );
- - public static DeviceWatcher CreateWatcherWithFilter( DeviceFilter watcher, IIterable<string> deviceFilter );
- | }
- + public class Windows.Devices.Perception.KnownCameraIntrinsicsProperties {
- + public string FocalLength { get; }
- + public string PrincipalPoint { get; }
- + public string RadialDistortion { get; }
- + public string TangentialDistortion { get; }
- + }
- + public class Windows.Devices.Perception.KnownPerceptionColorFrameSourceProperties {
- + public string AutoExposureEnabled { get; }
- + public string Exposure { get; }
- + public string ExposureCompensation { get; }
- + }
- + public class Windows.Devices.Perception.KnownPerceptionDepthFrameSourceProperties {
- + public string MaxDepth { get; }
- + public string MinDepth { get; }
- + }
- + public class Windows.Devices.Perception.KnownPerceptionFrameSourceProperties {
- + public string DeviceModelVersion { get; }
- + public string EnclosureLocation { get; }
- + public string FrameKind { get; }
- + public string Id { get; }
- + public string PhysicalDeviceIds { get; }
- + }
- + public class Windows.Devices.Perception.KnownPerceptionInfraredFrameSourceProperties {
- + public string ActiveIlluminationEnabled { get; }
- + public string AmbientSubtractionEnabled { get; }
- + public string AutoExposureEnabled { get; }
- + public string Exposure { get; }
- + public string ExposureCompensation { get; }
- + public string InterleavedIlluminationEnabled { get; }
- + public string StructureLightPatternEnabled { get; }
- + }
- + public class Windows.Devices.Perception.KnownPerceptionVideoFrameSourceProperties {
- + public string AvailableVideoProfiles { get; }
- + public string CameraIntrinsics { get; }
- + public string IsMirrored { get; }
- + public string SupportedVideoProfiles { get; }
- + public string VideoProfile { get; }
- + }
- + public class Windows.Devices.Perception.KnownPerceptionVideoProfileProperties {
- + public string BitmapAlphaMode { get; }
- + public string BitmapPixelFormat { get; }
- + public string FrameDuration { get; }
- + public string Height { get; }
- + public string Width { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrame {
- + public VideoFrame VideoFrame { get; }
- + public void Close();
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrameArrivedEventArgs {
- + public TimeSpan RelativeTime { get; }
- + public PerceptionColorFrame TryOpenFrame();
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrameReader {
- + public bool IsPaused { get; set; }
- + public PerceptionColorFrameSource Source { get; }
- + public PerceptionColorFrame TryReadLatestFrame();
- + public void Close();
- + TypedEventHandler<PerceptionColorFrameReader, PerceptionColorFrameArrivedEventArgs> FrameArrived;
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrameSource {
- + public bool Active { get; }
- + public bool Available { get; }
- + public IVectorView<PerceptionVideoProfile> AvailableVideoProfiles { get; }
- + public CameraIntrinsics CameraIntrinsics { get; }
- + public string DeviceKind { get; }
- + public string DisplayName { get; }
- + public string Id { get; }
- + public bool IsControlled { get; }
- + public IMapView<string, object> Properties { get; }
- + public IVectorView<PerceptionVideoProfile> SupportedVideoProfiles { get; }
- + public PerceptionVideoProfile VideoProfile { get; }
- + public PerceptionControlSession AcquireControlSession();
- + public bool CanControlIndependentlyFrom( string result );
- + public bool IsCorrelatedWith( string result );
- + public bool TryGetTransformTo( string hasResult, ref Matrix4x4 targetId );
- + public IAsyncOperation<PerceptionDepthCorrelatedCameraIntrinsics> TryGetDepthCorrelatedCameraIntrinsicsAsync( PerceptionDepthFrameSource result );
- + public IAsyncOperation<PerceptionDepthCorrelatedCoordinateMapper> TryGetDepthCorrelatedCoordinateMapperAsync( string result, PerceptionDepthFrameSource targetSourceId );
- + public IAsyncOperation<PerceptionFrameSourcePropertyChangeResult> TrySetVideoProfileAsync( PerceptionControlSession result, PerceptionVideoProfile controlSession );
- + public PerceptionColorFrameReader OpenReader();
- + public static PerceptionColorFrameSourceWatcher CreateWatcher();
- + public static IAsyncOperation<IVectorView<PerceptionColorFrameSource>> FindAllAsync();
- + public static IAsyncOperation<PerceptionColorFrameSource> FromIdAsync( string result );
- + public static IAsyncOperation<PerceptionFrameSourceAccessStatus> RequestAccessAsync();
- + TypedEventHandler<PerceptionColorFrameSource, object> ActiveChanged;
- + TypedEventHandler<PerceptionColorFrameSource, object> AvailableChanged;
- + TypedEventHandler<PerceptionColorFrameSource, object> CameraIntrinsicsChanged;
- + TypedEventHandler<PerceptionColorFrameSource, PerceptionFrameSourcePropertiesChangedEventArgs> PropertiesChanged;
- + TypedEventHandler<PerceptionColorFrameSource, object> VideoProfileChanged;
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrameSourceAddedEventArgs {
- + public PerceptionColorFrameSource FrameSource { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrameSourceRemovedEventArgs {
- + public PerceptionColorFrameSource FrameSource { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionColorFrameSourceWatcher {
- + public DeviceWatcherStatus Status { get; }
- + public void Start();
- + public void Stop();
- + TypedEventHandler<PerceptionColorFrameSourceWatcher, object> EnumerationCompleted;
- + TypedEventHandler<PerceptionColorFrameSourceWatcher, PerceptionColorFrameSourceAddedEventArgs> SourceAdded;
- + TypedEventHandler<PerceptionColorFrameSourceWatcher, PerceptionColorFrameSourceRemovedEventArgs> SourceRemoved;
- + TypedEventHandler<PerceptionColorFrameSourceWatcher, object> Stopped;
- + }
- + public class Windows.Devices.Perception.PerceptionControlSession {
- + public IAsyncOperation<PerceptionFrameSourcePropertyChangeResult> TrySetPropertyAsync( string result, object name );
- + public void Close();
- + TypedEventHandler<PerceptionControlSession, object> ControlLost;
- + }
- + public class Windows.Devices.Perception.PerceptionDepthCorrelatedCameraIntrinsics {
- + public Vector3 UnprojectPixelAtCorrelatedDepth( Point result, PerceptionDepthFrame pixelCoordinate );
- + public void UnprojectPixelsAtCorrelatedDepth( Point[] sourceCoordinates, PerceptionDepthFrame depthFrame, Vector3[] results );
- + public IAsyncAction UnprojectRegionPixelsAtCorrelatedDepthAsync( Rect result, PerceptionDepthFrame region, Vector3[] depthFrame );
- + public IAsyncAction UnprojectAllPixelsAtCorrelatedDepthAsync( PerceptionDepthFrame result, Vector3[] depthFrame );
- + }
- + public class Windows.Devices.Perception.PerceptionDepthCorrelatedCoordinateMapper {
- + public Point MapPixelToTarget( Point result, PerceptionDepthFrame sourcePixelCoordinate );
- + public void MapPixelsToTarget( Point[] sourceCoordinates, PerceptionDepthFrame depthFrame, Point[] results );
- + public IAsyncAction MapRegionOfPixelsToTargetAsync( Rect result, PerceptionDepthFrame region, Point[] depthFrame );
- + public IAsyncAction MapAllPixelsToTargetAsync( PerceptionDepthFrame result, Point[] depthFrame );
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrame {
- + public VideoFrame VideoFrame { get; }
- + public void Close();
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrameArrivedEventArgs {
- + public TimeSpan RelativeTime { get; }
- + public PerceptionDepthFrame TryOpenFrame();
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrameReader {
- + public bool IsPaused { get; set; }
- + public PerceptionDepthFrameSource Source { get; }
- + public PerceptionDepthFrame TryReadLatestFrame();
- + public void Close();
- + TypedEventHandler<PerceptionDepthFrameReader, PerceptionDepthFrameArrivedEventArgs> FrameArrived;
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrameSource {
- + public bool Active { get; }
- + public bool Available { get; }
- + public IVectorView<PerceptionVideoProfile> AvailableVideoProfiles { get; }
- + public CameraIntrinsics CameraIntrinsics { get; }
- + public string DeviceKind { get; }
- + public string DisplayName { get; }
- + public string Id { get; }
- + public bool IsControlled { get; }
- + public IMapView<string, object> Properties { get; }
- + public IVectorView<PerceptionVideoProfile> SupportedVideoProfiles { get; }
- + public PerceptionVideoProfile VideoProfile { get; }
- + public PerceptionControlSession AcquireControlSession();
- + public bool CanControlIndependentlyFrom( string result );
- + public bool IsCorrelatedWith( string result );
- + public bool TryGetTransformTo( string hasResult, ref Matrix4x4 targetId );
- + public IAsyncOperation<PerceptionDepthCorrelatedCameraIntrinsics> TryGetDepthCorrelatedCameraIntrinsicsAsync( PerceptionDepthFrameSource result );
- + public IAsyncOperation<PerceptionDepthCorrelatedCoordinateMapper> TryGetDepthCorrelatedCoordinateMapperAsync( string result, PerceptionDepthFrameSource targetId );
- + public IAsyncOperation<PerceptionFrameSourcePropertyChangeResult> TrySetVideoProfileAsync( PerceptionControlSession result, PerceptionVideoProfile controlSession );
- + public PerceptionDepthFrameReader OpenReader();
- + public static PerceptionDepthFrameSourceWatcher CreateWatcher();
- + public static IAsyncOperation<IVectorView<PerceptionDepthFrameSource>> FindAllAsync();
- + public static IAsyncOperation<PerceptionDepthFrameSource> FromIdAsync( string result );
- + public static IAsyncOperation<PerceptionFrameSourceAccessStatus> RequestAccessAsync();
- + TypedEventHandler<PerceptionDepthFrameSource, object> ActiveChanged;
- + TypedEventHandler<PerceptionDepthFrameSource, object> AvailableChanged;
- + TypedEventHandler<PerceptionDepthFrameSource, object> CameraIntrinsicsChanged;
- + TypedEventHandler<PerceptionDepthFrameSource, PerceptionFrameSourcePropertiesChangedEventArgs> PropertiesChanged;
- + TypedEventHandler<PerceptionDepthFrameSource, object> VideoProfileChanged;
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrameSourceAddedEventArgs {
- + public PerceptionDepthFrameSource FrameSource { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrameSourceRemovedEventArgs {
- + public PerceptionDepthFrameSource FrameSource { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionDepthFrameSourceWatcher {
- + public DeviceWatcherStatus Status { get; }
- + public void Start();
- + public void Stop();
- + TypedEventHandler<PerceptionDepthFrameSourceWatcher, object> EnumerationCompleted;
- + TypedEventHandler<PerceptionDepthFrameSourceWatcher, PerceptionDepthFrameSourceAddedEventArgs> SourceAdded;
- + TypedEventHandler<PerceptionDepthFrameSourceWatcher, PerceptionDepthFrameSourceRemovedEventArgs> SourceRemoved;
- + TypedEventHandler<PerceptionDepthFrameSourceWatcher, object> Stopped;
- + }
- + public enum Windows.Devices.Perception.PerceptionFrameSourceAccessStatus {
- + Unspecified = 0,
- + Allowed = 1,
- + DeniedByUser = 2,
- + DeniedBySystem = 3,
- + }
- + public class Windows.Devices.Perception.PerceptionFrameSourcePropertiesChangedEventArgs {
- + public CollectionChange CollectionChange { get; }
- + public string Key { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionFrameSourcePropertyChangeResult {
- + public object NewValue { get; }
- + public PerceptionFrameSourcePropertyChangeStatus Status { get; }
- + }
- + public enum Windows.Devices.Perception.PerceptionFrameSourcePropertyChangeStatus {
- + Unknown = 0,
- + Accepted = 1,
- + LostControl = 2,
- + PropertyNotSupported = 3,
- + PropertyReadOnly = 4,
- + ValueOutOfRange = 5,
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrame {
- + public VideoFrame VideoFrame { get; }
- + public void Close();
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrameArrivedEventArgs {
- + public TimeSpan RelativeTime { get; }
- + public PerceptionInfraredFrame TryOpenFrame();
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrameReader {
- + public bool IsPaused { get; set; }
- + public PerceptionInfraredFrameSource Source { get; }
- + public PerceptionInfraredFrame TryReadLatestFrame();
- + public void Close();
- + TypedEventHandler<PerceptionInfraredFrameReader, PerceptionInfraredFrameArrivedEventArgs> FrameArrived;
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrameSource {
- + public bool Active { get; }
- + public bool Available { get; }
- + public IVectorView<PerceptionVideoProfile> AvailableVideoProfiles { get; }
- + public CameraIntrinsics CameraIntrinsics { get; }
- + public string DeviceKind { get; }
- + public string DisplayName { get; }
- + public string Id { get; }
- + public bool IsControlled { get; }
- + public IMapView<string, object> Properties { get; }
- + public IVectorView<PerceptionVideoProfile> SupportedVideoProfiles { get; }
- + public PerceptionVideoProfile VideoProfile { get; }
- + public PerceptionControlSession AcquireControlSession();
- + public bool CanControlIndependentlyFrom( string result );
- + public bool IsCorrelatedWith( string result );
- + public bool TryGetTransformTo( string hasResult, ref Matrix4x4 targetId );
- + public IAsyncOperation<PerceptionDepthCorrelatedCameraIntrinsics> TryGetDepthCorrelatedCameraIntrinsicsAsync( PerceptionDepthFrameSource result );
- + public IAsyncOperation<PerceptionDepthCorrelatedCoordinateMapper> TryGetDepthCorrelatedCoordinateMapperAsync( string result, PerceptionDepthFrameSource targetId );
- + public IAsyncOperation<PerceptionFrameSourcePropertyChangeResult> TrySetVideoProfileAsync( PerceptionControlSession result, PerceptionVideoProfile controlSession );
- + public PerceptionInfraredFrameReader OpenReader();
- + public static PerceptionInfraredFrameSourceWatcher CreateWatcher();
- + public static IAsyncOperation<IVectorView<PerceptionInfraredFrameSource>> FindAllAsync();
- + public static IAsyncOperation<PerceptionInfraredFrameSource> FromIdAsync( string result );
- + public static IAsyncOperation<PerceptionFrameSourceAccessStatus> RequestAccessAsync();
- + TypedEventHandler<PerceptionInfraredFrameSource, object> ActiveChanged;
- + TypedEventHandler<PerceptionInfraredFrameSource, object> AvailableChanged;
- + TypedEventHandler<PerceptionInfraredFrameSource, object> CameraIntrinsicsChanged;
- + TypedEventHandler<PerceptionInfraredFrameSource, PerceptionFrameSourcePropertiesChangedEventArgs> PropertiesChanged;
- + TypedEventHandler<PerceptionInfraredFrameSource, object> VideoProfileChanged;
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrameSourceAddedEventArgs {
- + public PerceptionInfraredFrameSource FrameSource { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrameSourceRemovedEventArgs {
- + public PerceptionInfraredFrameSource FrameSource { get; }
- + }
- + public class Windows.Devices.Perception.PerceptionInfraredFrameSourceWatcher {
- + public DeviceWatcherStatus Status { get; }
- + public void Start();
- + public void Stop();
- + TypedEventHandler<PerceptionInfraredFrameSourceWatcher, object> EnumerationCompleted;
- + TypedEventHandler<PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceAddedEventArgs> SourceAdded;
- + TypedEventHandler<PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceRemovedEventArgs> SourceRemoved;
- + TypedEventHandler<PerceptionInfraredFrameSourceWatcher, object> Stopped;
- + }
- + public class Windows.Devices.Perception.PerceptionVideoProfile {
- + public BitmapAlphaMode BitmapAlphaMode { get; }
- + public BitmapPixelFormat BitmapPixelFormat { get; }
- + public TimeSpan FrameDuration { get; }
- + public int Height { get; }
- + public int Width { get; }
- + public bool IsEqual( PerceptionVideoProfile result );
- + }
- + public interface Windows.Devices.Perception.Provider.IPerceptionFrameProvider {
- + public bool Available { get; }
- + public PerceptionFrameProviderInfo FrameProviderInfo { get; }
- + public IPropertySet Properties { get; }
- + public void Start();
- + public void Stop();
- + public void SetProperty( PerceptionPropertyChangeRequest value );
- + }
- + public interface Windows.Devices.Perception.Provider.IPerceptionFrameProviderManager {
- + public IPerceptionFrameProvider GetFrameProvider( PerceptionFrameProviderInfo result );
- + }
- + public class Windows.Devices.Perception.Provider.KnownPerceptionFrameKind {
- + public string Color { get; }
- + public string Depth { get; }
- + public string Infrared { get; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionControlGroup {
- + public IVectorView<string> FrameProviderIds { get; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionCorrelation {
- + public Quaternion Orientation { get; }
- + public Vector3 Position { get; }
- + public string TargetId { get; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionCorrelationGroup {
- + public IVectorView<PerceptionCorrelation> RelativeLocations { get; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionFaceAuthenticationGroup {
- + public IVectorView<string> FrameProviderIds { get; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionFrame {
- + public TimeSpan RelativeTime { get; set; }
- + public IMemoryBuffer FrameData { get; }
- + public ValueSet Properties { get; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionFrameProviderInfo {
- + public string Id { get; set; }
- + public bool Hidden { get; set; }
- + public string FrameKind { get; set; }
- + public string DisplayName { get; set; }
- + public string DeviceKind { get; set; }
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionFrameProviderManagerService {
- + public static void RegisterFrameProviderInfo( IPerceptionFrameProviderManager manager, PerceptionFrameProviderInfo frameProviderInfo );
- + public static void UnregisterFrameProviderInfo( IPerceptionFrameProviderManager manager, PerceptionFrameProviderInfo frameProviderInfo );
- + public static void RegisterFaceAuthenticationGroup( IPerceptionFrameProviderManager manager, PerceptionFaceAuthenticationGroup faceAuthenticationGroup );
- + public static void UnregisterFaceAuthenticationGroup( IPerceptionFrameProviderManager manager, PerceptionFaceAuthenticationGroup faceAuthenticationGroup );
- + public static void RegisterControlGroup( IPerceptionFrameProviderManager manager, PerceptionControlGroup controlGroup );
- + public static void UnregisterControlGroup( IPerceptionFrameProviderManager manager, PerceptionControlGroup controlGroup );
- + public static void RegisterCorrelationGroup( IPerceptionFrameProviderManager manager, PerceptionCorrelationGroup correlationGroup );
- + public static void UnregisterCorrelationGroup( IPerceptionFrameProviderManager manager, PerceptionCorrelationGroup correlationGroup );
- + public static void UpdateAvailabilityForProvider( IPerceptionFrameProvider provider, bool available );
- + public static void PublishFrameForProvider( IPerceptionFrameProvider provider, PerceptionFrame frame );
- + }
- + public class Windows.Devices.Perception.Provider.PerceptionPropertyChangeRequest {
- + public PerceptionFrameSourcePropertyChangeStatus Status { get; set; }
- + public string Name { get; }
- + public object Value { get; }
- + public Deferral GetDeferral();
- + }
- + public bool delegate Windows.Devices.Perception.Provider.PerceptionStartFaceAuthenticationHandler( PerceptionFaceAuthenticationGroup result );
- + public void delegate Windows.Devices.Perception.Provider.PerceptionStopFaceAuthenticationHandler( PerceptionFaceAuthenticationGroup sender );
- + public class Windows.Devices.Perception.Provider.PerceptionVideoFrameAllocator {
- + public PerceptionFrame AllocateFrame();
- + public PerceptionFrame CopyFromVideoFrame( VideoFrame value );
- + public void Close();
- + }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Foundation.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Foundation.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Gaming.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Gaming.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- + public struct Windows.Gaming.Preview.GamesEnumerationContract {
- + }
- + public class Windows.Gaming.Preview.GamesEnumeration.GameList {
- + public static IAsyncOperation<IVectorView<GameListEntry>> FindAllAsync();
- + Windows.Gaming.Preview.GamesEnumeration.GameListChangedEventHandler GameAdded;
- + Windows.Gaming.Preview.GamesEnumeration.GameListChangedEventHandler GameRemoved;
- + Windows.Gaming.Preview.GamesEnumeration.GameListChangedEventHandler GameUpdated;
- + }
- + public enum Windows.Gaming.Preview.GamesEnumeration.GameListCategory {
- + Candidate = 0,
- + ConfirmedBySystem = 1,
- + ConfirmedByUser = 2,
- + }
- + public void delegate Windows.Gaming.Preview.GamesEnumeration.GameListChangedEventHandler( GameListEntry game );
- + public class Windows.Gaming.Preview.GamesEnumeration.GameListEntry {
- + public GameListCategory Category { get; }
- + public AppDisplayInfo DisplayInfo { get; }
- + public IMapView<string, object> Properties { get; }
- + public IAsyncOperation<bool> LaunchAsync();
- + public IAsyncAction SetCategoryAsync( GameListCategory action );
- + }
- + public interface Windows.Gaming.Preview.GamesEnumeration.IGameListEntry {
- + public GameListCategory Category { get; }
- + public AppDisplayInfo DisplayInfo { get; }
- + public IMapView<string, object> Properties { get; }
- + public IAsyncOperation<bool> LaunchAsync();
- + public IAsyncAction SetCategoryAsync( GameListCategory action );
- + }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Globalization.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Globalization.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Graphics.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Graphics.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- | public enum Windows.Graphics.Display.ResolutionScale {
- + Scale450Percent = 450,
- | }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Management.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Management.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Media.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Media.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- + public class Windows.Media.Devices.Core.CameraIntrinsics {
- + public Vector2 FocalLength { get; }
- + public uint ImageHeight { get; }
- + public uint ImageWidth { get; }
- + public Vector2 PrincipalPoint { get; }
- + public Vector3 RadialDistortion { get; }
- + public Vector2 TangentialDistortion { get; }
- + public Point ProjectOntoFrame( Vector3 result );
- + public Vector2 UnprojectAtUnitDepth( Point result );
- + public void ProjectManyOntoFrame( Vector3[] coordinates, Point[] results );
- + public void UnprojectPixelsAtUnitDepth( Point[] pixelCoordinates, Vector2[] results );
- + }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Networking.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Networking.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- | public enum Windows.Networking.Vpn.VpnIPProtocol {
- + Icmp = 1,
- + Ipv6Icmp = 58,
- + Igmp = 2,
- + Pgm = 113,
- | }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Security.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Security.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Services.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Services.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- - public enum Windows.Services.Maps.Guidance.AudioEvents;
- - public enum Windows.Services.Maps.Guidance.DrivingDirection;
- + public enum Windows.Services.Maps.Guidance.GuidanceAudioMeasurementSystem {
- + Meters = 0,
- + MilesAndYards = 1,
- + MilesAndFeet = 2,
- + }
- + public enum Windows.Services.Maps.Guidance.GuidanceAudioNotifications {
- + None = 0,
- + Maneuver = 1,
- + Route = 2,
- + Gps = 4,
- + SpeedLimit = 8,
- + Traffic = 16,
- + TrafficCamera = 32,
- + }
- - public class Windows.Services.Maps.Guidance.GuidanceEngine;
- - public class Windows.Services.Maps.Guidance.GuidanceEventArgs;
- + public class Windows.Services.Maps.Guidance.GuidanceLaneInfo {
- + public bool IsOnRoute { get; }
- + public GuidanceLaneMarkers LaneMarkers { get; }
- + }
- + public enum Windows.Services.Maps.Guidance.GuidanceLaneMarkers {
- + None = 0,
- + LightRight = 1,
- + Right = 2,
- + HardRight = 4,
- + Straight = 8,
- + UTurnLeft = 16,
- + HardLeft = 32,
- + Left = 64,
- + LightLeft = 128,
- + UTurnRight = 256,
- + Unknown = 4294967295,
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceManeuver {
- + public string DepartureRoadName { get; }
- + public string DepartureShortRoadName { get; }
- + public int DistanceFromPreviousManeuver { get; }
- + public int DistanceFromRouteStart { get; }
- + public int EndAngle { get; }
- + public string InstructionText { get; }
- + public GuidanceManeuverKind Kind { get; }
- + public string NextRoadName { get; }
- + public string NextShortRoadName { get; }
- + public GuidanceRoadSignpost RoadSignpost { get; }
- + public int StartAngle { get; }
- + public Geopoint StartLocation { get; }
- + }
- + public enum Windows.Services.Maps.Guidance.GuidanceManeuverKind {
- + None = 0,
- + GoStraight = 1,
- + UTurnRight = 2,
- + UTurnLeft = 3,
- + TurnKeepRight = 4,
- + TurnLightRight = 5,
- + TurnRight = 6,
- + TurnHardRight = 7,
- + KeepMiddle = 8,
- + TurnKeepLeft = 9,
- + TurnLightLeft = 10,
- + TurnLeft = 11,
- + TurnHardLeft = 12,
- + FreewayEnterRight = 13,
- + FreewayEnterLeft = 14,
- + FreewayLeaveRight = 15,
- + FreewayLeaveLeft = 16,
- + FreewayKeepRight = 17,
- + FreewayKeepLeft = 18,
- + TrafficCircleRight1 = 19,
- + TrafficCircleRight2 = 20,
- + TrafficCircleRight3 = 21,
- + TrafficCircleRight4 = 22,
- + TrafficCircleRight5 = 23,
- + TrafficCircleRight6 = 24,
- + TrafficCircleRight7 = 25,
- + TrafficCircleRight8 = 26,
- + TrafficCircleRight9 = 27,
- + TrafficCircleRight10 = 28,
- + TrafficCircleRight11 = 29,
- + TrafficCircleRight12 = 30,
- + TrafficCircleLeft1 = 31,
- + TrafficCircleLeft2 = 32,
- + TrafficCircleLeft3 = 33,
- + TrafficCircleLeft4 = 34,
- + TrafficCircleLeft5 = 35,
- + TrafficCircleLeft6 = 36,
- + TrafficCircleLeft7 = 37,
- + TrafficCircleLeft8 = 38,
- + TrafficCircleLeft9 = 39,
- + TrafficCircleLeft10 = 40,
- + TrafficCircleLeft11 = 41,
- + TrafficCircleLeft12 = 42,
- + Start = 43,
- + End = 44,
- + TakeFerry = 45,
- + PassTransitStation = 46,
- + LeaveTransitStation = 47,
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceMapMatchedCoordinate {
- + public double CurrentHeading { get; }
- + public double CurrentSpeed { get; }
- + public bool IsOnStreet { get; }
- + public Geopoint Location { get; }
- + public GuidanceRoadSegment Road { get; }
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceNavigator {
- + public GuidanceAudioNotifications AudioNotifications { get; set; }
- + public GuidanceAudioMeasurementSystem AudioMeasurementSystem { get; set; }
- + public void StartNavigating( GuidanceRoute route );
- + public void StartSimulating( GuidanceRoute route, int speedInMetersPerSecond );
- + public void StartTracking();
- + public void Pause();
- + public void Resume();
- + public void Stop();
- + public void RepeatLastAudioNotification();
- + public void SetGuidanceVoice( int voiceId, string voiceFolder );
- + public void UpdateUserLocation( Geocoordinate userLocation );
- + public void UpdateUserLocation( Geocoordinate userLocation, BasicGeoposition positionOverride );
- + public static GuidanceNavigator GetCurrent();
- + TypedEventHandler<GuidanceNavigator, object> DestinationReached;
- + TypedEventHandler<GuidanceNavigator, GuidanceUpdatedEventArgs> GuidanceUpdated;
- + TypedEventHandler<GuidanceNavigator, object> RerouteFailed;
- + TypedEventHandler<GuidanceNavigator, GuidanceReroutedEventArgs> Rerouted;
- + TypedEventHandler<GuidanceNavigator, object> Rerouting;
- + TypedEventHandler<GuidanceNavigator, object> UserLocationLost;
- + TypedEventHandler<GuidanceNavigator, object> UserLocationRestored;
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceReroutedEventArgs {
- + public GuidanceRoute Route { get; }
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceRoadSegment {
- + public string Id { get; }
- + public bool IsHighway { get; }
- + public bool IsTollRoad { get; }
- + public bool IsTunnel { get; }
- + public Geopath Path { get; }
- + public string RoadName { get; }
- + public string ShortRoadName { get; }
- + public double SpeedLimit { get; }
- + public TimeSpan TravelTime { get; }
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceRoadSignpost {
- + public Color BackgroundColor { get; }
- + public string Exit { get; }
- + public IVectorView<string> ExitDirections { get; }
- + public string ExitNumber { get; }
- + public Color ForegroundColor { get; }
- + }
- | public class Windows.Services.Maps.Guidance.GuidanceRoute {
- + public int Distance { get; }
- * public IVectorView<GuidanceManeuver> Maneuvers { get; }
- + public IVectorView<GuidanceRoadSegment> RoadSegments { get; }
- - public int Length { get; }
- - public IVector<RoadElement> RoadElements { get; }
- + public static bool CanCreateFromMapRoute( MapRoute result );
- + public static GuidanceRoute TryCreateFromMapRoute( MapRoute result );
- - public GuidanceRoute( MapRoute mapRoute );
- | }
- + public class Windows.Services.Maps.Guidance.GuidanceTelemetryCollector {
- + public int UploadFrequency { get; set; }
- + public double SpeedTrigger { get; set; }
- + public bool Enabled { get; set; }
- + public void ClearLocalData();
- + public static GuidanceTelemetryCollector GetCurrent();
- + }
- + public class Windows.Services.Maps.Guidance.GuidanceUpdatedEventArgs {
- + public GuidanceManeuver AfterNextManeuver { get; }
- + public int AfterNextManeuverDistance { get; }
- + public GuidanceMapMatchedCoordinate CurrentLocation { get; }
- + public int DistanceToDestination { get; }
- + public int ElapsedDistance { get; }
- + public TimeSpan ElapsedTime { get; }
- + public bool IsNewManeuver { get; }
- + public IVectorView<GuidanceLaneInfo> LaneInfo { get; }
- + public GuidanceMode Mode { get; }
- + public GuidanceManeuver NextManeuver { get; }
- + public int NextManeuverDistance { get; }
- + public string RoadName { get; }
- + public GuidanceRoute Route { get; }
- + public TimeSpan TimeToDestination { get; }
- + }
- - public enum Windows.Services.Maps.Guidance.IconId;
- - public class Windows.Services.Maps.Guidance.LaneInfo;
- - public enum Windows.Services.Maps.Guidance.LaneInfoDirection;
- - public class Windows.Services.Maps.Guidance.LaneInfoEventArgs;
- - public class Windows.Services.Maps.Guidance.Maneuver;
- - public class Windows.Services.Maps.Guidance.MapMatchedLocation;
- - public class Windows.Services.Maps.Guidance.MapSensor;
- - public class Windows.Services.Maps.Guidance.MapSignpost;
- - public enum Windows.Services.Maps.Guidance.NetworkType;
- - public class Windows.Services.Maps.Guidance.RoadElement;
- - public class Windows.Services.Maps.Guidance.Traffic;
- - public class Windows.Services.Maps.Guidance.TrafficEvent;
- - public class Windows.Services.Maps.Guidance.TrafficEventArgs;
- - public enum Windows.Services.Maps.Guidance.TrafficRequestState;
- - public enum Windows.Services.Maps.Guidance.UnitSystem;
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Storage.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Storage.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.System.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.System.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.UI.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.UI.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- | public class Windows.UI.StartScreen.SecondaryTileVisualElements {
- + public Uri Square44x44Logo { get; set; }
- | }
- | public enum Windows.UI.StartScreen.TileSize {
- + Square44x44 = 7,
- | }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.UI.Xaml.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.UI.Xaml.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- - public class Windows.UI.Xaml.Automation.Peers.MenuFlyoutSubItemAutomationPeer : Windows.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer;
- | public class Windows.UI.Xaml.Documents.Hyperlink : Windows.UI.Xaml.Documents.Span {
- + public UnderlineStyle UnderlineStyle { get; set; }
- + public DependencyProperty UnderlineStyleProperty { get; }
- | }
- + public enum Windows.UI.Xaml.Documents.UnderlineStyle {
- + None = 0,
- + Single = 1,
- + }
- | public enum Windows.UI.Xaml.Input.InputScopeNameValue {
- + PersonalFullName = 7,
- | }
- MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
- new file: \wim\10125x64\Windows\System32\WinMetadata\Windows.Web.winmd
- old file: \wim\10122x64\Windows\System32\WinMetadata\Windows.Web.winmd
- diff legends: +: added, -: removed, *: changed, |: type member changed
- found no differences.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement