Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0c525e79
Commit
0c525e79
authored
Apr 22, 2015
by
Stefan Leichter
Committed by
Alexandre Julliard
Apr 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wtsapi32: Add stub for WTSEnableChildSessions.
parent
a406abbe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
wtsapi32.c
dlls/wtsapi32/wtsapi32.c
+9
-0
wtsapi32.spec
dlls/wtsapi32/wtsapi32.spec
+1
-0
wtsapi32.h
include/wtsapi32.h
+1
-0
No files found.
dlls/wtsapi32/wtsapi32.c
View file @
0c525e79
...
...
@@ -62,6 +62,15 @@ BOOL WINAPI WTSDisconnectSession(HANDLE hServer, DWORD SessionId, BOOL bWait)
}
/************************************************************
* WTSEnableChildSessions (WTSAPI32.@)
*/
BOOL
WINAPI
WTSEnableChildSessions
(
BOOL
enable
)
{
FIXME
(
"Stub %d
\n
"
,
enable
);
return
TRUE
;
}
/************************************************************
* WTSEnumerateProcessesA (WTSAPI32.@)
*/
BOOL
WINAPI
WTSEnumerateProcessesA
(
HANDLE
hServer
,
DWORD
Reserved
,
DWORD
Version
,
...
...
dlls/wtsapi32/wtsapi32.spec
View file @
0c525e79
...
...
@@ -2,6 +2,7 @@
@ stdcall WTSConnectSessionA(long long ptr long)
@ stdcall WTSConnectSessionW(long long ptr long)
@ stdcall WTSDisconnectSession(long long long)
@ stdcall WTSEnableChildSessions(long)
@ stdcall WTSEnumerateProcessesA(long long long ptr ptr)
@ stdcall WTSEnumerateProcessesW(long long long ptr ptr)
@ stdcall WTSEnumerateServersA(ptr long long ptr ptr)
...
...
include/wtsapi32.h
View file @
0c525e79
...
...
@@ -142,6 +142,7 @@ BOOL WINAPI WTSConnectSessionA(ULONG, ULONG, PSTR, BOOL);
BOOL
WINAPI
WTSConnectSessionW
(
ULONG
,
ULONG
,
PWSTR
,
BOOL
);
#define WTSConnectSession WINELIB_NAME_AW(WTSConnectSession)
BOOL
WINAPI
WTSDisconnectSession
(
HANDLE
,
DWORD
,
BOOL
);
BOOL
WINAPI
WTSEnableChildSessions
(
BOOL
);
BOOL
WINAPI
WTSEnumerateProcessesA
(
HANDLE
,
DWORD
,
DWORD
,
PWTS_PROCESS_INFOA
*
,
DWORD
*
);
BOOL
WINAPI
WTSEnumerateProcessesW
(
HANDLE
,
DWORD
,
DWORD
,
PWTS_PROCESS_INFOW
*
,
DWORD
*
);
#define WTSEnumerateProcesses WINELIB_NAME_AW(WTSEnumerateProcesses)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment