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
f63f4026
Commit
f63f4026
authored
Jul 15, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jul 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Implement WTSGetActiveConsoleSessionId as a stub.
parent
618b410a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+9
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
f63f4026
...
...
@@ -1133,7 +1133,7 @@
@ stdcall VirtualQuery(ptr ptr long)
@ stdcall VirtualQueryEx(long ptr ptr long)
@ stdcall VirtualUnlock(ptr long)
# @ stub WTSGetActiveConsoleSessionId
@ stdcall WTSGetActiveConsoleSessionId()
@ stdcall WaitCommEvent(long ptr ptr)
@ stdcall WaitForDebugEvent(ptr long)
@ stdcall WaitForMultipleObjects(long ptr long long)
...
...
dlls/kernel32/process.c
View file @
f63f4026
...
...
@@ -3324,3 +3324,12 @@ HRESULT WINAPI RegisterApplicationRestart(PCWSTR pwzCommandLine, DWORD dwFlags)
return
S_OK
;
}
/**********************************************************************
* WTSGetActiveConsoleSessionId (KERNEL32.@)
*/
DWORD
WINAPI
WTSGetActiveConsoleSessionId
(
void
)
{
FIXME
(
"stub
\n
"
);
return
0
;
}
include/winbase.h
View file @
f63f4026
...
...
@@ -2136,6 +2136,7 @@ WINBASEAPI BOOL WINAPI VirtualProtectEx(HANDLE,LPVOID,SIZE_T,DWORD,LPDWOR
WINBASEAPI
SIZE_T
WINAPI
VirtualQuery
(
LPCVOID
,
PMEMORY_BASIC_INFORMATION
,
SIZE_T
);
WINBASEAPI
SIZE_T
WINAPI
VirtualQueryEx
(
HANDLE
,
LPCVOID
,
PMEMORY_BASIC_INFORMATION
,
SIZE_T
);
WINBASEAPI
BOOL
WINAPI
VirtualUnlock
(
LPVOID
,
SIZE_T
);
WINBASEAPI
DWORD
WINAPI
WTSGetActiveConsoleSessionId
(
void
);
WINBASEAPI
BOOL
WINAPI
WaitCommEvent
(
HANDLE
,
LPDWORD
,
LPOVERLAPPED
);
WINBASEAPI
BOOL
WINAPI
WaitForDebugEvent
(
LPDEBUG_EVENT
,
DWORD
);
WINBASEAPI
DWORD
WINAPI
WaitForMultipleObjects
(
DWORD
,
const
HANDLE
*
,
BOOL
,
DWORD
);
...
...
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