Skip to content

Commit

Permalink
Added WTS_CURRENT_SERVER constants for #1403.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebattista committed Jan 24, 2023
1 parent 927a197 commit c7f4a60
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
17 changes: 17 additions & 0 deletions generation/WinSDK/manual/RemoteDesktop.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Runtime.InteropServices;
using Windows.Win32.Interop;

namespace Windows.Win32.System.RemoteDesktop
{
public static partial class Apis
{
[NativeTypeName("HANDLE")]
public const int WTS_CURRENT_SERVER = 0;

[NativeTypeName("HANDLE")]
public const int WTS_CURRENT_SERVER_HANDLE = 0;

public const string WTS_CURRENT_SERVER_NAME = "";
}
}
4 changes: 4 additions & 0 deletions scripts/ChangesSinceLastRelease.txt
Original file line number Diff line number Diff line change
Expand Up @@ -812,3 +812,7 @@ Windows.Win32.Devices.Usb.WINUSB_PIPE_POLICY.SHORT_PACKET_TERMINATE added
Windows.Win32.Devices.Usb.WINUSB_POWER_POLICY added
Windows.Win32.Devices.Usb.WINUSB_POWER_POLICY.AUTO_SUSPEND added
Windows.Win32.Devices.Usb.WINUSB_POWER_POLICY.SUSPEND_DELAY added
# Added WTS_CURRENT_SERVER constants for #1403.
Windows.Win32.System.RemoteDesktop.Apis.WTS_CURRENT_SERVER added
Windows.Win32.System.RemoteDesktop.Apis.WTS_CURRENT_SERVER_HANDLE added
Windows.Win32.System.RemoteDesktop.Apis.WTS_CURRENT_SERVER_NAME added

0 comments on commit c7f4a60

Please sign in to comment.