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
a2705da3
Commit
a2705da3
authored
Jan 02, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub implementation for TermsrvAppInstallMode.
parent
80e30f3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
version.c
dlls/kernel32/version.c
+11
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
a2705da3
...
@@ -1057,7 +1057,7 @@
...
@@ -1057,7 +1057,7 @@
@ stub TerminateJobObject
@ stub TerminateJobObject
@ stdcall TerminateProcess(long long)
@ stdcall TerminateProcess(long long)
@ stdcall TerminateThread(long long)
@ stdcall TerminateThread(long long)
@ st
ub TermsrvAppInstallMode
@ st
dcall TermsrvAppInstallMode()
@ stdcall Thread32First(long ptr)
@ stdcall Thread32First(long ptr)
@ stdcall Thread32Next(long ptr)
@ stdcall Thread32Next(long ptr)
@ stdcall ThunkConnect32(ptr str str str ptr ptr)
@ stdcall ThunkConnect32(ptr str str str ptr ptr)
...
...
dlls/kernel32/version.c
View file @
a2705da3
...
@@ -363,3 +363,14 @@ void WINAPI DiagOutput16(LPCSTR str)
...
@@ -363,3 +363,14 @@ void WINAPI DiagOutput16(LPCSTR str)
/* FIXME */
/* FIXME */
TRACE
(
"DIAGOUTPUT:%s
\n
"
,
debugstr_a
(
str
));
TRACE
(
"DIAGOUTPUT:%s
\n
"
,
debugstr_a
(
str
));
}
}
/***********************************************************************
* TermsrvAppInstallMode (KERNEL32.@)
*
* Find out whether the terminal server is in INSTALL or EXECUTE mode.
*/
BOOL
WINAPI
TermsrvAppInstallMode
(
void
)
{
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
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