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
2e0e6677
Commit
2e0e6677
authored
Nov 07, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wtsapi32: Add a stub for WTSLogoffSession.
parent
91e3a40e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
wtsapi32.c
dlls/wtsapi32/wtsapi32.c
+10
-0
wtsapi32.spec
dlls/wtsapi32/wtsapi32.spec
+1
-1
No files found.
dlls/wtsapi32/wtsapi32.c
View file @
2e0e6677
...
...
@@ -142,6 +142,16 @@ void WINAPI WTSFreeMemory(PVOID pMemory)
}
/************************************************************
* WTSLogoffSession (WTSAPI32.@)
*/
BOOL
WINAPI
WTSLogoffSession
(
HANDLE
hserver
,
DWORD
session_id
,
BOOL
bwait
)
{
FIXME
(
"(%p, 0x%x, %d): stub
\n
"
,
hserver
,
session_id
,
bwait
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/************************************************************
* WTSOpenServerA (WTSAPI32.@)
*/
HANDLE
WINAPI
WTSOpenServerA
(
LPSTR
pServerName
)
...
...
dlls/wtsapi32/wtsapi32.spec
View file @
2e0e6677
...
...
@@ -7,7 +7,7 @@
@ stdcall WTSEnumerateSessionsA(long long long ptr ptr)
@ stdcall WTSEnumerateSessionsW(long long long ptr ptr)
@ stdcall WTSFreeMemory(ptr)
@ st
ub WTSLogoffSession
@ st
dcall WTSLogoffSession(ptr long long)
@ stdcall WTSOpenServerA(ptr)
@ stdcall WTSOpenServerW(ptr)
@ stdcall WTSQuerySessionInformationA(long long long ptr ptr)
...
...
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