Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a7c99707
Commit
a7c99707
authored
Jan 08, 2007
by
Samuel Lidén Borell
Committed by
Alexandre Julliard
Jan 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add SetTermsrvAppInstallMode stub.
parent
4d72d789
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
version.c
dlls/kernel32/version.c
+16
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
a7c99707
...
...
@@ -1024,7 +1024,7 @@
@ stdcall SetSystemTimeAdjustment(long long)
@ stdcall SetTapeParameters(ptr long ptr)
@ stdcall SetTapePosition(ptr long long long long long)
@ st
ub SetTermsrvAppInstallMode
@ st
dcall SetTermsrvAppInstallMode(long)
@ stdcall SetThreadAffinityMask(long long)
@ stdcall SetThreadContext(long ptr)
@ stdcall SetThreadExecutionState(long)
...
...
dlls/kernel32/version.c
View file @
a7c99707
...
...
@@ -374,3 +374,19 @@ BOOL WINAPI TermsrvAppInstallMode(void)
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
/***********************************************************************
* SetTermsrvAppInstallMode (KERNEL32.@)
*
* This function is said to switch between the INSTALL (TRUE) or
* EXECUTE (FALSE) terminal server modes.
*
* This function always returns zero on WinXP Home so it's probably
* safe to return that value in most cases. However, if a terminal
* server is running it will probably return something else.
*/
DWORD
WINAPI
SetTermsrvAppInstallMode
(
BOOL
bInstallMode
)
{
FIXME
(
"(%d): stub
\n
"
,
bInstallMode
);
return
0
;
}
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