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
a53de9ea
Commit
a53de9ea
authored
Aug 04, 2006
by
Robert Reif
Committed by
Alexandre Julliard
Aug 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wtsapi32: Add some stubs.
parent
d58e1dba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
wtsapi32.c
dlls/wtsapi32/wtsapi32.c
+20
-0
wtsapi32.spec
dlls/wtsapi32/wtsapi32.spec
+2
-2
No files found.
dlls/wtsapi32/wtsapi32.c
View file @
a53de9ea
...
...
@@ -142,6 +142,26 @@ void WINAPI WTSFreeMemory(PVOID pMemory)
}
/************************************************************
* WTSOpenServerA (WTSAPI32.@)
*/
HANDLE
WINAPI
WTSOpenServerA
(
LPSTR
pServerName
)
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_a
(
pServerName
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
}
/************************************************************
* WTSOpenServerW (WTSAPI32.@)
*/
HANDLE
WINAPI
WTSOpenServerW
(
LPWSTR
pServerName
)
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
pServerName
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
}
/************************************************************
* WTSQuerySessionInformationA (WTSAPI32.@)
*/
BOOL
WINAPI
WTSQuerySessionInformationA
(
...
...
dlls/wtsapi32/wtsapi32.spec
View file @
a53de9ea
...
...
@@ -8,8 +8,8 @@
@ stdcall WTSEnumerateSessionsW(long long long ptr ptr)
@ stdcall WTSFreeMemory(ptr)
@ stub WTSLogoffSession
@ st
ub WTSOpenServerA
@ st
ub WTSOpenServerW
@ st
dcall WTSOpenServerA(ptr)
@ st
dcall WTSOpenServerW(ptr)
@ stdcall WTSQuerySessionInformationA(long long long ptr ptr)
@ stdcall WTSQuerySessionInformationW(long long long ptr ptr)
@ stub WTSQueryUserConfigA
...
...
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