-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added WTS_CURRENT_SERVER constants for #1403.
- Loading branch information
1 parent
927a197
commit c7f4a60
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = ""; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters