summaryrefslogtreecommitdiffstats
path: root/third_party/rust/winapi/src/um/wtsapi32.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/winapi/src/um/wtsapi32.rs')
-rw-r--r--third_party/rust/winapi/src/um/wtsapi32.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/rust/winapi/src/um/wtsapi32.rs b/third_party/rust/winapi/src/um/wtsapi32.rs
new file mode 100644
index 0000000000..ddddf35f2e
--- /dev/null
+++ b/third_party/rust/winapi/src/um/wtsapi32.rs
@@ -0,0 +1,6 @@
+use shared::minwindef::BOOL;
+use shared::ntdef::{PHANDLE, ULONG};
+//1286
+extern "system" {
+ pub fn WTSQueryUserToken(SessionId: ULONG, phToken: PHANDLE) -> BOOL;
+}